diff options
author | terryjreedy <tjreedy@udel.edu> | 2017-06-27 01:53:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-27 01:53:40 -0400 |
commit | 8bdc3bd3d66fefdc07d32bd19c41c6f902f16111 (patch) | |
tree | 6a331311db06da59a5f9f71d6d0722eb8b8f4084 /Lib/idlelib/autocomplete.py | |
parent | 2d348f7a723db839aa18ce8213b8663ccb0a3d35 (diff) | |
download | cpython-git-8bdc3bd3d66fefdc07d32bd19c41c6f902f16111.tar.gz |
[3.6] bpo-29910: IDLE no longer deletes a character after commenting out a region (GH-825) (#2429)
This happened because shortcut has a class binding and 'break' was not returned.
Fix other potential conflicts between IDLE and default key bindings.
* Add news item
* Update NEWS
(cherry picked from commit 213ce12)
Diffstat (limited to 'Lib/idlelib/autocomplete.py')
-rw-r--r-- | Lib/idlelib/autocomplete.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/idlelib/autocomplete.py b/Lib/idlelib/autocomplete.py index 1e44fa5bc6..cd212ccb14 100644 --- a/Lib/idlelib/autocomplete.py +++ b/Lib/idlelib/autocomplete.py @@ -60,6 +60,7 @@ class AutoComplete: if a function call is needed. """ self.open_completions(True, False, True) + return "break" def try_open_completions_event(self, event): """Happens when it would be nice to open a completion list, but not |