diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-20 21:29:37 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-10-20 21:29:37 (GMT) |
commit | efb60c0ceba425dc2bc602f615a75271f264e0a2 (patch) | |
tree | 2adfe37ac6041184dc938525187e90b47fb4335d /Misc | |
parent | a7a52ab7ee58be0afca3a7763fffc928dcf5459d (diff) | |
download | cpython-efb60c0ceba425dc2bc602f615a75271f264e0a2.zip cpython-efb60c0ceba425dc2bc602f615a75271f264e0a2.tar.gz cpython-efb60c0ceba425dc2bc602f615a75271f264e0a2.tar.bz2 |
Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which
fixes the problem of some exceptions being thrown at shutdown when the
interpreter is killed. Patch by Adam Olsen.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -540,6 +540,7 @@ Kevin O'Connor Tim O'Malley Pascal Oberndoerfer Jeffrey Ollie +Adam Olsen Grant Olson Piet van Oostrum Jason Orendorff @@ -12,6 +12,10 @@ What's New in Python 2.7 alpha 1 Core and Builtins ----------------- +- Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which + fixes the problem of some exceptions being thrown at shutdown when the + interpreter is killed. Patch by Adam Olsen. + - Issue #7168: Document PyFloat_AsString and PyFloat_AsReprString, and note that they are unsafe and deprecated. |