summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorMeador Inge <meadori@gmail.com>2012-07-19 13:45:43 -0500
committerMeador Inge <meadori@gmail.com>2012-07-19 13:45:43 -0500
commit29e49d63942cc75ead85a4cb77dea34285be9fcc (patch)
tree11f26c0761d11c386ee7471aad31693542f2535f /Misc
parent60c2266afe82daab47779deed6f701902943d20e (diff)
downloadcpython-git-29e49d63942cc75ead85a4cb77dea34285be9fcc.tar.gz
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 3bf81a266b..16847be1f8 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -542,6 +542,7 @@ Soren Larsen
Piers Lauder
Ben Laurie
Simon Law
+Julia Lawall
Chris Lawrence
Brian Leair
James Lee
diff --git a/Misc/NEWS b/Misc/NEWS
index 5793aec6b6..0136a4425b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.4
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 when using randomized hashing (-R) has been fixed.