summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-09-12 16:01:36 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-09-12 16:01:36 (GMT)
commit9d20e0edd966431fa63e85ff7c04087de0c9ed7c (patch)
tree62a017a00e8ed1f50462aa02b48a2d6cd7759d51 /Misc/NEWS
parent7ae251a0256686a0583a371a0c6421b6fd8366bf (diff)
downloadcpython-9d20e0edd966431fa63e85ff7c04087de0c9ed7c.zip
cpython-9d20e0edd966431fa63e85ff7c04087de0c9ed7c.tar.gz
cpython-9d20e0edd966431fa63e85ff7c04087de0c9ed7c.tar.bz2
Issue #15926: Fix crash after multiple reinitializations of the interpreter.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 993bc11..d72a9d5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.3.1
Core and Builtins
-----------------
+- Issue #15926: Fix crash after multiple reinitializations of the interpreter.
+
- Issue #15895: Fix FILE pointer leak in one error branch of
PyRun_SimpleFileExFlags() when filename points to a pyc/pyo file, closeit
is false an and set_main_loader() fails.