Issue 11853: idle3.2 on mac unresponsive on input() called from a source file (original) (raw)

Issue11853

Created on 2011-04-16 03:48 by John.DeNero, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
input.py John.DeNero,2011-04-16 03:48 Example script file that will not run
Messages (2)
msg133878 - (view) Author: John DeNero (John.DeNero) Date: 2011-04-16 03:48
idle3.2 becomes unresponsive if the input() function is called from a source file run via F5. To repeat: - Create a script file with the contents: "input()" - Press F5 to run - Idle is now unresponsive and ^C interrupt is not caught unless issued at the command line Note that calling input() from idle's interactive shell works fine, as does running the script from the command line.
msg133882 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2011-04-16 06:26
Thanks for the report. This is the same problem as reported in Issue11088. A fix will be available in the next releases of Python 3.2 and 2.7. A workaround is to use the 32-bit-only version of Python 3.2 which uses the Tcl/Tk 8.4 or to not try to do input() in an editor window.
History
Date User Action Args
2022-04-11 14:57:16 admin set github: 56062
2011-04-16 06:26:15 ned.deily set status: open -> closedassignee: ned.deilymessages: + nosy: + ned.deilysuperseder: IDLE on OS X with Cocoa Tk 8.5 can hang waiting on input / raw_inputtype: crash -> behaviorresolution: duplicatestage: resolved
2011-04-16 03:48:27 John.DeNero create