summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2011-10-24 18:12:58 (GMT)
committerPetri Lehtinen <petri@digip.org>2011-10-24 18:12:58 (GMT)
commita94200e6ce17d794c121cbeff7d9b61b206a2429 (patch)
treef972334b57a32368d0e82f4125526ffaff073f30 /Misc
parentce770375031ad3c1b52097be464ce6bc758845a3 (diff)
downloadcpython-a94200e6ce17d794c121cbeff7d9b61b206a2429.zip
cpython-a94200e6ce17d794c121cbeff7d9b61b206a2429.tar.gz
cpython-a94200e6ce17d794c121cbeff7d9b61b206a2429.tar.bz2
Issue #13018: Fix reference leaks in error paths in dictobject.c.
Patch by Suman Saha.
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 c078623..115ff69 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.3?
Core and Builtins
-----------------
+- Issue #13018: Fix reference leaks in error paths in dictobject.c.
+ Patch by Suman Saha.
+
- Issue #1294232: In a few cases involving metaclass inheritance, the
interpreter would sometimes invoke the wrong metaclass when building a new
class object. These cases now behave correctly. Patch by Daniel Urban.