diff options
author | terryjreedy <tjreedy@udel.edu> | 2017-06-27 05:53:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-27 05:53:40 (GMT) |
commit | 8bdc3bd3d66fefdc07d32bd19c41c6f902f16111 (patch) | |
tree | 6a331311db06da59a5f9f71d6d0722eb8b8f4084 /Lib/idlelib/codecontext.py | |
parent | 2d348f7a723db839aa18ce8213b8663ccb0a3d35 (diff) | |
download | cpython-8bdc3bd3d66fefdc07d32bd19c41c6f902f16111.zip cpython-8bdc3bd3d66fefdc07d32bd19c41c6f902f16111.tar.gz cpython-8bdc3bd3d66fefdc07d32bd19c41c6f902f16111.tar.bz2 |
[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/codecontext.py')
-rw-r--r-- | Lib/idlelib/codecontext.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/idlelib/codecontext.py b/Lib/idlelib/codecontext.py index f25e1b3..09dc078 100644 --- a/Lib/idlelib/codecontext.py +++ b/Lib/idlelib/codecontext.py @@ -89,6 +89,7 @@ class CodeContext: idleConf.SetOption("extensions", "CodeContext", "visible", str(self.label is not None)) idleConf.SaveUserCfgFiles() + return "break" def get_line_info(self, linenum): """Get the line indent value, text, and any block start keyword |