summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMeador Inge <meadori@gmail.com>2012-07-19 18:51:59 (GMT)
committerMeador Inge <meadori@gmail.com>2012-07-19 18:51:59 (GMT)
commitf4cc2161d567460f27a1390277ba6c70581ebc0d (patch)
treef7fd69613b99aee65f5831d5fca30f6ca7010c1a /Misc
parent77d32833700f6ffc05b04e3838bb52e0bb39e2a9 (diff)
parent29e49d63942cc75ead85a4cb77dea34285be9fcc (diff)
downloadcpython-f4cc2161d567460f27a1390277ba6c70581ebc0d.zip
cpython-f4cc2161d567460f27a1390277ba6c70581ebc0d.tar.gz
cpython-f4cc2161d567460f27a1390277ba6c70581ebc0d.tar.bz2
Issue #15394: Fix ref leaks in PyModule_Create.
Patch by Julia Lawall.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index b671d61..d085063 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -601,6 +601,7 @@ Amos Latteier
Piers Lauder
Ben Laurie
Simon Law
+Julia Lawall
Chris Lawrence
Brian Leair
Mathieu Leduc-Hamel
diff --git a/Misc/NEWS b/Misc/NEWS
index 35c4a44..7baa57f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Beta 2?
Core and Builtins
-----------------
+- Issue #15394: An issue in PyModule_Create that caused references to
+ be leaked on some error paths has been fixed. Patch by Julia Lawall.
+
- Issue #15368: An issue that caused bytecode generation to be
non-deterministic has been fixed.