diff options
| author | Ned Deily <nad@acm.org> | 2014-03-28 03:51:15 (GMT) |
|---|---|---|
| committer | Ned Deily <nad@acm.org> | 2014-03-28 03:51:15 (GMT) |
| commit | c318288f69e11c537baeca6799c212e8dd294b85 (patch) | |
| tree | 61db5fc96166290d16cfb529945086cadd935ac7 /Lib/idlelib/ScriptBinding.py | |
| parent | 090eb1fd18f7cdd753b6fc9b60162491ee48f04e (diff) | |
| parent | b7601676b07c7c8e79af9e7818a783b966612c34 (diff) | |
| download | cpython-c318288f69e11c537baeca6799c212e8dd294b85.zip cpython-c318288f69e11c537baeca6799c212e8dd294b85.tar.gz cpython-c318288f69e11c537baeca6799c212e8dd294b85.tar.bz2 | |
Issue #17654: merge from 3.4
Diffstat (limited to 'Lib/idlelib/ScriptBinding.py')
| -rw-r--r-- | Lib/idlelib/ScriptBinding.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/ScriptBinding.py b/Lib/idlelib/ScriptBinding.py index 6bfe128..b783637 100644 --- a/Lib/idlelib/ScriptBinding.py +++ b/Lib/idlelib/ScriptBinding.py @@ -53,7 +53,7 @@ class ScriptBinding: self.flist = self.editwin.flist self.root = self.editwin.root - if macosxSupport.runningAsOSXApp(): + if macosxSupport.isCocoaTk(): self.editwin.text_frame.bind('<<run-module-event-2>>', self._run_module_event) def check_module_event(self, event): @@ -114,7 +114,7 @@ class ScriptBinding: shell.set_warning_stream(saved_stream) def run_module_event(self, event): - if macosxSupport.runningAsOSXApp(): + if macosxSupport.isCocoaTk(): # Tk-Cocoa in MacOSX is broken until at least # Tk 8.5.9, and without this rather # crude workaround IDLE would hang when a user |
