summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-12-14 23:30:42 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-12-14 23:30:42 (GMT)
commit800dfee91a081547eaac9eabd5883998a5231324 (patch)
tree0828bb792bd83febc2dc87e61e08eb11978d5f53 /Misc/NEWS
parent6ed3244557051031c2f3aa1de22080e12b341d1b (diff)
downloadcpython-800dfee91a081547eaac9eabd5883998a5231324.zip
cpython-800dfee91a081547eaac9eabd5883998a5231324.tar.gz
cpython-800dfee91a081547eaac9eabd5883998a5231324.tar.bz2
Merged revisions 87251 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87251 | r.david.murray | 2010-12-14 18:06:25 -0500 (Tue, 14 Dec 2010) | 4 lines #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/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6b6dcba..cd670e7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.1.4?
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__.
+
- Issue #10596: Fix float.__mod__ to have the same behaviour as
float.__divmod__ with respect to signed zeros. -4.0 % 4.0 should be
0.0, not -0.0.