diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-13 14:16:46 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-13 14:16:46 (GMT) |
commit | 1df1536fb98c1c2bbeefe373bc38877129f905e1 (patch) | |
tree | a1489c86f4f1ea5b0645afcabf8aee765826d18a /Misc | |
parent | bea8ae794873485eef1b0c0c20b374df99858430 (diff) | |
download | cpython-1df1536fb98c1c2bbeefe373bc38877129f905e1.zip cpython-1df1536fb98c1c2bbeefe373bc38877129f905e1.tar.gz cpython-1df1536fb98c1c2bbeefe373bc38877129f905e1.tar.bz2 |
Issue #9828: Destroy the GIL in Py_Finalize(), so that it gets properly
re-created on a subsequent call to Py_Initialize(). The problem (a crash)
wouldn't appear in 3.1 or 2.7 where the GIL's structure is more trivial.
Diffstat (limited to 'Misc')
-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 #9828: Destroy the GIL in Py_Finalize(), so that it gets properly + re-created on a subsequent call to Py_Initialize(). The problem (a crash) + wouldn't appear in 3.1 or 2.7 where the GIL's structure is more trivial. + - Issue #9210: Configure option --with-wctype-functions was removed. Using the functions from the libc caused the methods .upper() and lower() to become locale aware and created subtly wrong results. |