summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-02-15 21:25:27 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-02-15 21:25:27 (GMT)
commit2f5a163dfc76d53b5ecd04ff19c4d15761d106a7 (patch)
treebfdc895089c727da59b06f7b2a2fe1e464e0b8c1 /Misc/NEWS
parent1ca93954e17e4f6f1230306997badbda3e5c68bc (diff)
downloadcpython-2f5a163dfc76d53b5ecd04ff19c4d15761d106a7.zip
cpython-2f5a163dfc76d53b5ecd04ff19c4d15761d106a7.tar.gz
cpython-2f5a163dfc76d53b5ecd04ff19c4d15761d106a7.tar.bz2
Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert().
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 81ec44b..d0161d1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -116,6 +116,8 @@ Core and Builtins
Library
-------
+- Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert().
+
- Issue #13015: Fix a possible reference leak in defaultdict.__repr__.
Patch by Suman Saha.