summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-02-15 01:43:47 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-02-15 01:43:47 (GMT)
commit15af7b4a4f38be7155c4186624d67dc12764aceb (patch)
treedf4bfdb89d0a1ad1a1d4605c6d020c8759a6be09 /Misc
parent0568d6fd4e048c0fb3ffca0f9c8005e3f1256203 (diff)
parentf5f1fe0cb5dedf37098622de318656003dc5230d (diff)
downloadcpython-15af7b4a4f38be7155c4186624d67dc12764aceb.zip
cpython-15af7b4a4f38be7155c4186624d67dc12764aceb.tar.gz
cpython-15af7b4a4f38be7155c4186624d67dc12764aceb.tar.bz2
Issue #13015: Fix a possible reference leak in defaultdict.__repr__.
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 c9b0900..2f8a5c1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -466,6 +466,9 @@ Core and Builtins
Library
-------
+- Issue #13015: Fix a possible reference leak in defaultdict.__repr__.
+ Patch by Suman Saha.
+
- Issue #10287: nntplib now queries the server's CAPABILITIES first before
sending MODE READER, and only sends it if not already in READER mode.
Patch by Hynek Schlawack.