commit | 8b09500345d998f3ff1e363a5210bc87f42ff306 | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@redhat.com> | Wed May 29 02:57:56 2019 +0200 |
committer | GitHub <noreply@github.com> | Wed May 29 02:57:56 2019 +0200 |
tree | 3f03ee8d5f60fece00d48ae305253328413ae9d0 | |
parent | b76302ddd0896cb39ce69909349b53db6e7776e2 [diff] |
bpo-37076: _thread.start_new_thread() calls _PyErr_WriteUnraisableMsg() (GH-13617) _thread.start_new_thread() now logs uncaught exception raised by the function using sys.unraisablehook(), rather than sys.excepthook(), so the hook gets access to the function which raised the exception.