[issue15262] Idle does not show traceback in other threads

2012-07-09 Thread Mark
Mark added the comment: Yay! I can't wait :) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue15262] Idle does not show traceback in other threads

2012-07-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thanks Roger. So this should be fixed in the upcoming 2.7.4 and probably 3.2.4. -- ___ Python tracker ___ _

[issue15262] Idle does not show traceback in other threads

2012-07-08 Thread Roger Serwy
Roger Serwy added the comment: Mark, I ran your example against 2.7.1 and did not receive a traceback. I then ran it against the latest 2.7.3+ and receive a traceback in IDLE. Here's the entire Shell contents: Python 2.7.3+ (2.7:97445ca895d5, Jul 8 2012, 19:58:43) [GCC 4.5.2] on linux2 Typ

[issue15262] Idle does not show traceback in other threads

2012-07-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Unless this could have been just as easily fixed in IDLE as in the core (Roger?), no, don't hold your breath ;-). -- nosy: +serwy ___ Python tracker _

[issue15262] Idle does not show traceback in other threads

2012-07-06 Thread Mark
Mark added the comment: So, I should not hold my breath in the hope of this being fixed in 2.7? -- ___ Python tracker ___ ___ Python-

[issue15262] Idle does not show traceback in other threads

2012-07-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: In 3.3, you do not need it >>> Unhandled exception in thread started by Traceback (most recent call last): File "F:\Python\mypy\tem.py", line 2, in f def f(): typo #there is no variable called typo NameError: global name 'typo' is not defined In 3.2 only

[issue15262] Idle does not show traceback in other threads

2012-07-06 Thread Mark
New submission from Mark : Consider the following code: from thread import start_new def f(): typo #there is no variable called typo start_new(f, ()) If run from the command line, this produces a traceback. If run from IDLE, it does not. I suspect this is not by design. This caused me endle