diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-12-14 23:06:25 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-12-14 23:06:25 (GMT) |
commit | ce4b170c5a6ab03af66331871f827fb021cebe18 (patch) | |
tree | 520ad32eac01352bf8249cb8b4338218e41a33b1 /Misc | |
parent | 95333e3aa989c727b7a13ad32c1d169f70bd57ef (diff) | |
download | cpython-ce4b170c5a6ab03af66331871f827fb021cebe18.zip cpython-ce4b170c5a6ab03af66331871f827fb021cebe18.tar.gz cpython-ce4b170c5a6ab03af66331871f827fb021cebe18.tar.bz2 |
#4236: avoid possible Fatal Error when import is called from __del__
Patch by Simon Cross, crasher test code by Martin von Löwis.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -7,6 +7,12 @@ What's New in Python 3.2 Beta 2? *Release date: XXXX-XX-XX* +Core and Builtins +----------------- + +- Issue #4236: PyModule_Create2 now checks the import machinery directly + rather than the Py_IsInitialized flag, avoiding a Fatal Python + error in certain circumstances when an import is done in __del__. Library ------- |