New submission from Mike Hobbs:
Only info (Windows event viewer): Faulting application python_cc.exe, version
0.0.0.0, faulting module python34.dll, version 3.4.3150.1013, fault address
0x001059b7
Note: python_cc.exe is renamed python.exe to identify it in task manager.
OS is Windows XP SP3
New submission from Mike Hobbs :
This issue is very similar to the issue original reported in issue1722344,
except that it occurs in daemon threads. Here's a sample exception:
Exception in thread Thread-1 (most likely raised during interpreter shutdown):
Traceback (most recent call
New submission from Mike Hobbs :
Condition.wait() without a timeout will never raise a KeyboardInterrupt:
cond = threading.Condition()
cond.acquire()
cond.wait()
*** Pressing Ctrl-C now does nothing ***
If you pass a timeout to Condition.wait(), however, it does behave as expected