summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-09-20 20:13:48 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-09-20 20:13:48 (GMT)
commitb0b384b7c0333bf1183cd6f90c0a3f9edaadd6b9 (patch)
tree5e87a6a4d5896b19b6ae0113dd04165aea4d49ea /Misc/NEWS
parent0646b4bb77a5955407e4174e9fac56447dc958f7 (diff)
downloadcpython-b0b384b7c0333bf1183cd6f90c0a3f9edaadd6b9.zip
cpython-b0b384b7c0333bf1183cd6f90c0a3f9edaadd6b9.tar.gz
cpython-b0b384b7c0333bf1183cd6f90c0a3f9edaadd6b9.tar.bz2
Issue #9901: Destroying the GIL in Py_Finalize() can fail if some other
threads are still running. Instead, reinitialize the GIL on a second call to Py_Initialize().
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 61279ec..250121f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.2 Alpha 3?
Core and Builtins
-----------------
+- Issue #9901: Destroying the GIL in Py_Finalize() can fail if some other
+ threads are still running. Instead, reinitialize the GIL on a second
+ call to Py_Initialize().
+
- Issue #9252: PyImport_Import no longer uses a fromlist hack to return the
module that was imported, but instead gets the module from sys.modules.