[issue10909] thread hang, possibly related to print

2017-06-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: If there is no bug in 3.6/7, this should be closed. -- ___ Python tracker ___ ___ Python-bugs-list m

[issue10909] thread hang, possibly related to print

2014-10-02 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: needs patch -> patch review versions: +Python 3.4, Python 3.5 ___ Python tracker ___ ___ Python-

[issue10909] thread hang, possibly related to print

2013-03-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: I re-ran in 2.7.3. First time, B froze at 81, second time neither froze for a few minutes until I used task manager to stop. I then remembered that accessing the gui from a 2nd thread is not supported. Quoting from msg179101 on #16823, which I turned into a do

[issue10909] thread hang, possibly related to print

2012-10-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Is this issue reproduced now, with Python 2.7.3+? Is this issue reproduced with issue9290 patch? -- nosy: +serhiy.storchaka ___ Python tracker __

[issue10909] thread hang, possibly related to print

2011-01-22 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +kbk ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue10909] thread hang, possibly related to print

2011-01-22 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Antoine, could improvement from 2.7 to 3.2 have anything to new with > the new implementation of the Global Interpreter Lock? Perhaps, but then it's pure luck. Looking at the traceback, IDLE seems to replace sys.stdout with its own thingie when spawning a s

[issue10909] thread hang, possibly related to print

2011-01-22 Thread Scott M
Scott M added the comment: Moving to 3.x means redoing large swaths of the extension I just wrote. It's only a couple thousand lines, but it was my first extension and it cost me a week of my life in Google, and it does a lot with strings. I haven't pulled down the source code for Python's in

[issue10909] thread hang, possibly related to print

2011-01-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: I ran the 2.7 file (on 2.7) and after several minutes, threadA stopped printing, but no error message. Antoine, could improvement from 2.7 to 3.2 have anything to new with the new implementation of the Global Interpreter Lock? Scott, if you can do your proje

[issue10909] thread hang, possibly related to print

2011-01-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: FWIW, I downloaded, edited for 3.2, and ran. 45 minutes later, with counter in box near 16000, and output sequence looking about the same as initially, I killed with Task Manager (also on winxp). You might try same on your system. -- Added file: http:

[issue10909] thread hang, possibly related to print

2011-01-21 Thread Scott M
Scott M added the comment: It hasn't failed yet when run "straight". Here's the issue, though. I'm going to be introducing Python as the scripting language of choice, to a bunch of people who are less than fluent in programming. Because debugging is not an obvious concept to them, they are g

[issue10909] thread hang, possibly related to print

2011-01-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: What happens if you run your program without IDLE? (either with right-click and run or run from Command Prompt window?) I would not be surprised if your problems go away. IDLE runs a saved file in a separate pythonw process. Printing (or writing) to stdout r

[issue10909] thread hang, possibly related to print

2011-01-14 Thread Scott M
New submission from Scott M : New to Python; be gentle if I've simply missed something. i'M running on Windows XP, using a recently downloaded 2.7.1. I'm running by hitting F5 in IDLE. The attached .py creates 2 threads, one which updates a Tkinter label 10 times a second forever, and one whi