diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-23 01:11:06 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-09-23 01:11:06 (GMT) |
commit | 6f1f091e80d790f338d2225b017d2d2cf9123af7 (patch) | |
tree | 91d588c18c03526244e10e91743db0d83314fb86 /Lib/idlelib/PyShell.py | |
parent | 697c43d389462f3f1f2ff5fb867442d712f77cb4 (diff) | |
parent | 5e6201e8a9e08d11348ffca27d85d88d24d74f5d (diff) | |
download | cpython-6f1f091e80d790f338d2225b017d2d2cf9123af7.zip cpython-6f1f091e80d790f338d2225b017d2d2cf9123af7.tar.gz cpython-6f1f091e80d790f338d2225b017d2d2cf9123af7.tar.bz2 |
Merge with 3.5
Diffstat (limited to 'Lib/idlelib/PyShell.py')
-rwxr-xr-x | Lib/idlelib/PyShell.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index 90fc689..4a68b19 100755 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -1547,6 +1547,14 @@ def main(): root.withdraw() flist = PyShellFileList(root) macosxSupport.setupApp(root, flist) + + if macosxSupport.isAquaTk(): + # There are some screwed up <2> class bindings for text + # widgets defined in Tk which we need to do away with. + # See issue #24801. + root.unbind_class('Text', '<B2>') + root.unbind_class('Text', '<B2-Motion>') + root.unbind_class('Text', '<<PasteSelection>>') if enable_edit: if not (cmd or script): |