]> granicus.if.org Git - python/commit
Fixes #11088: IDLE crashes when using F5 to run a script on OSX with Tk 8.5
authorRonald Oussoren <ronaldoussoren@mac.com>
Tue, 17 May 2011 12:48:40 +0000 (14:48 +0200)
committerRonald Oussoren <ronaldoussoren@mac.com>
Tue, 17 May 2011 12:48:40 +0000 (14:48 +0200)
commit5ee0567bb2af1c81da72990c9b2cd199af2e2ace
tree961940d384a3369c24d4dc625fcfd3fadc276df1
parent6edd8c1faf64a118d85355159e5363bba69efe87
Fixes #11088: IDLE crashes when using F5 to run a script on OSX with Tk 8.5

Without this patch IDLE will crash reliably on OSX when Tkinter
is linked to TkCocoa 8.5.x.

To reproduce:

* Create a new file (script.py) with the following two lines:

x = input('prompt: ')
print(x)

* Save the script

* Run the script using the F5 keyboard shortcut
  (running from the menu works fine)

The patch is a fairly crude hack, but we haven't found a better
workaround for this Tk bug yet.
Lib/idlelib/ScriptBinding.py
Misc/NEWS