diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-20 20:13:48 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-20 20:13:48 (GMT) |
commit | b0b384b7c0333bf1183cd6f90c0a3f9edaadd6b9 (patch) | |
tree | 5e87a6a4d5896b19b6ae0113dd04165aea4d49ea /Misc/NEWS | |
parent | 0646b4bb77a5955407e4174e9fac56447dc958f7 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |