summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-01-31 15:16:38 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-01-31 15:16:38 (GMT)
commitdfc12edbca2df81f13bbb48351b1aedb8773f885 (patch)
tree8e2f1ba73447370a40d93b3cd5f4887f6c4d2f48 /Misc
parent7b3ce6a17ea70e2acec46122e134097ce03d044a (diff)
downloadcpython-dfc12edbca2df81f13bbb48351b1aedb8773f885.zip
cpython-dfc12edbca2df81f13bbb48351b1aedb8773f885.tar.gz
cpython-dfc12edbca2df81f13bbb48351b1aedb8773f885.tar.bz2
Fixed multiple reinitialization of the Python interpreter. The small int list in longobject.c has caused a seg fault during the third finalization.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6b7b692..a9da8b6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.0a3?
Core and Builtins
-----------------
+- Fixed multiple reinitialization of the Python interpreter. The small int
+ list in longobject.c has caused a seg fault during the third finalization.
+
- Issue #1973: bytes.fromhex('') raises SystemError
- Issue #1771: remove cmp parameter from sorted() and list.sort()