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.
This commit is contained in:
Antoine Pitrou 2009-10-20 21:29:37 +00:00
parent a7a52ab7ee
commit efb60c0ceb
5 changed files with 59 additions and 29 deletions

View file

@ -540,6 +540,7 @@ Kevin O'Connor
Tim O'Malley
Pascal Oberndoerfer
Jeffrey Ollie
Adam Olsen
Grant Olson
Piet van Oostrum
Jason Orendorff

View file

@ -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.