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
This commit is contained in:
Serhiy Storchaka 2017-06-27 07:02:32 +03:00 committed by terryjreedy
parent 9a02ae3d3d
commit 213ce12adf
11 changed files with 48 additions and 16 deletions

View file

@ -63,6 +63,7 @@ class ScriptBinding:
return 'break'
if not self.tabnanny(filename):
return 'break'
return "break"
def tabnanny(self, filename):
# XXX: tabnanny should work on binary files as well