summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-02-15 01:42:46 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-02-15 01:42:46 (GMT)
commitf5f1fe0cb5dedf37098622de318656003dc5230d (patch)
treef86c8e3abc437c9d409fe2caba69d4dc003f50a3 /Misc/NEWS
parent71135624d81fac63a1684d5cf31932652f9250ff (diff)
downloadcpython-f5f1fe0cb5dedf37098622de318656003dc5230d.zip
cpython-f5f1fe0cb5dedf37098622de318656003dc5230d.tar.gz
cpython-f5f1fe0cb5dedf37098622de318656003dc5230d.tar.bz2
Issue #13015: Fix a possible reference leak in defaultdict.__repr__.
Patch by Suman Saha.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 06ce404..0ef337c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -113,6 +113,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.