Message75149
Lib/threading.py gets into infinite recursion while testing (or using)
it with verbose set. This didn't happen before because Thread.__started
didn't use to be an Event, but now it is.
Typical situation:
_DummyThread calls _Thread__started.set, which calls
__started.__cond.notify_all(), which calls __cond.notify(). If there are
no waiters, it calls _Verbose._note, which calls currentThread, but if
there is no current thread _DummyThread is called, which calls
_Thread__started.set ... |
|
| Date |
User |
Action |
Args |
| 2008-10-23 20:28:23 | gpolo | set | recipients:
+ gpolo |
| 2008-10-23 20:28:23 | gpolo | set | messageid: <[email protected]> |
| 2008-10-23 20:28:22 | gpolo | link | issue4188 messages |
| 2008-10-23 20:28:21 | gpolo | create | |
|