summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-10-20 21:29:37 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-10-20 21:29:37 (GMT)
commitefb60c0ceba425dc2bc602f615a75271f264e0a2 (patch)
tree2adfe37ac6041184dc938525187e90b47fb4335d /Misc
parenta7a52ab7ee58be0afca3a7763fffc928dcf5459d (diff)
downloadcpython-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/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index c8f80e6..50190fa 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -540,6 +540,7 @@ Kevin O'Connor
Tim O'Malley
Pascal Oberndoerfer
Jeffrey Ollie
+Adam Olsen
Grant Olson
Piet van Oostrum
Jason Orendorff
diff --git a/Misc/NEWS b/Misc/NEWS
index d291f1d..49c739f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.