diff options
author | Christian Heimes <christian@cheimes.de> | 2008-01-31 15:16:38 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-01-31 15:16:38 (GMT) |
commit | dfc12edbca2df81f13bbb48351b1aedb8773f885 (patch) | |
tree | 8e2f1ba73447370a40d93b3cd5f4887f6c4d2f48 /Misc | |
parent | 7b3ce6a17ea70e2acec46122e134097ce03d044a (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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() |