This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients Honest Abe, Keith.Bannister, PythonInTheGrass, amaury.forgeotdarc, asvetlov, belopolsky, cgohlke, loewis, pitrou, terry.reedy
Date 2014-01-23.00:46:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1390437973.56.0.643337331777.issue11077@psf.upfronthosting.co.za>
In-reply-to
Content
tk_v_raw.py is not obviously related to this issue. First, you only use tkinter in the main thread. Second, it works on Windows 7-64, 3.4 Idle.
>>> 
Yes? > abc
Got cmd abc
Yes? > def
Got cmd def
Yes? > 
It also runs in the console on 2.7, 3.3, 3.4. The main problem is that closing the Label window does not stop while True: in the thread, making a graceful stop difficult. The loop needs
        if cmd == 'q': break

Keith, did you install the appropriate ActiveState tcl/tk, as described here: http://www.python.org/download/mac/tcltk/
History
Date User Action Args
2014-01-23 00:46:13terry.reedysetrecipients: + terry.reedy, loewis, amaury.forgeotdarc, belopolsky, pitrou, asvetlov, cgohlke, PythonInTheGrass, Honest Abe, Keith.Bannister
2014-01-23 00:46:13terry.reedysetmessageid: <1390437973.56.0.643337331777.issue11077@psf.upfronthosting.co.za>
2014-01-23 00:46:13terry.reedylinkissue11077 messages
2014-01-23 00:46:12terry.reedycreate