diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-06-27 04:02:32 (GMT) |
---|---|---|
committer | terryjreedy <tjreedy@udel.edu> | 2017-06-27 04:02:32 (GMT) |
commit | 213ce12adfc9281c6f381bb45d132e9de8ffd450 (patch) | |
tree | db01c6fdab2e3a9c986d5b49c5294d309ae11f56 /Misc | |
parent | 9a02ae3d3d645f0c8178f3362694f473bab6fe3e (diff) | |
download | cpython-213ce12adfc9281c6f381bb45d132e9de8ffd450.zip cpython-213ce12adfc9281c6f381bb45d132e9de8ffd450.tar.gz cpython-213ce12adfc9281c6f381bb45d132e9de8ffd450.tar.bz2 |
bpo-29910: IDLE no longer deletes a character after commenting out a region (#825)
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
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/IDLE/2017-06-26-22-45-27.bpo-29910.mqHh7u.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2017-06-26-22-45-27.bpo-29910.mqHh7u.rst b/Misc/NEWS.d/next/IDLE/2017-06-26-22-45-27.bpo-29910.mqHh7u.rst new file mode 100644 index 0000000..5157f8b --- /dev/null +++ b/Misc/NEWS.d/next/IDLE/2017-06-26-22-45-27.bpo-29910.mqHh7u.rst @@ -0,0 +1,3 @@ +IDLE no longer deletes a character after commenting out a region by a key +shortcut. Add ``return 'break'`` for this and other potential conflicts +between IDLE and default key bindings. |