aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/idlelib/AutoCompleteWindow.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2012-06-03 12:33:23 +0200
committerMartin v. Löwis <martin@v.loewis.de>2012-06-03 12:33:23 +0200
commitf20940792df1f3b1dbda3ec5fdd6a8b6bc9f96d5 (patch)
tree6d90e2db588d354936773ef9807ea6d030597d52 /Lib/idlelib/AutoCompleteWindow.py
parent428d161b577118c3160839d659a3b0b4afd577e2 (diff)
parent9f44a66abc476a6aa57238c005253242b45f827e (diff)
downloadcpython-f20940792df1f3b1dbda3ec5fdd6a8b6bc9f96d5.tar.gz
cpython-f20940792df1f3b1dbda3ec5fdd6a8b6bc9f96d5.zip
merge 3.2
Diffstat (limited to 'Lib/idlelib/AutoCompleteWindow.py')
-rw-r--r--Lib/idlelib/AutoCompleteWindow.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/AutoCompleteWindow.py b/Lib/idlelib/AutoCompleteWindow.py
index 04777460ee3..7787e7034c1 100644
--- a/Lib/idlelib/AutoCompleteWindow.py
+++ b/Lib/idlelib/AutoCompleteWindow.py
@@ -354,7 +354,7 @@ class AutoCompleteWindow:
# A modifier key, so ignore
return
- elif event.char:
+ elif event.char and event.char >= ' ':
# Regular character with a non-length-1 keycode
self._change_start(self.start + event.char)
self.lasttypedstart = self.start