aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/idlelib/autocomplete_w.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2017-12-11 22:59:08 -0500
committerGitHub <noreply@github.com>2017-12-11 22:59:08 -0500
commite570211406f9bfbe16eff8d10e614d90497e08df (patch)
tree125352d976b2f4fc56ef8fec673153c32a297142 /Lib/idlelib/autocomplete_w.py
parente56975351bc2c574c728f738e88effba7116279f (diff)
downloadcpython-e570211406f9bfbe16eff8d10e614d90497e08df.tar.gz
cpython-e570211406f9bfbe16eff8d10e614d90497e08df.zip
Fix idlelib comment typos reported by Mike on pull request 4803. (#4807)
Diffstat (limited to 'Lib/idlelib/autocomplete_w.py')
-rw-r--r--Lib/idlelib/autocomplete_w.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/autocomplete_w.py b/Lib/idlelib/autocomplete_w.py
index 7c3138f4040..12113f95e63 100644
--- a/Lib/idlelib/autocomplete_w.py
+++ b/Lib/idlelib/autocomplete_w.py
@@ -246,7 +246,7 @@ class AutoCompleteWindow:
acw.wm_geometry("+%d+%d" % (new_x, new_y))
if platform.system().startswith('Windows'):
- # See issue 15786. When on windows platform, Tk will misbehaive
+ # See issue 15786. When on windows platform, Tk will misbehave
# to call winconfig_event multiple times, we need to prevent this,
# otherwise mouse button double click will not be able to used.
acw.unbind(WINCONFIG_SEQUENCE, self.winconfigid)