commit | c39cd783fb9277ca98816d375471717aff6c6a74 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Wed Feb 15 02:42:46 2012 +0100 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Wed Feb 15 02:42:46 2012 +0100 |
tree | a5730bf8be36342bd7d3a749236e1da8ea02cdc1 | |
parent | ff337ccd4bf9b6edea5aa25ea72f7d4c02a3bf47 [diff] [blame] |
Issue #13015: Fix a possible reference leak in defaultdict.__repr__. Patch by Suman Saha.
diff --git a/Misc/NEWS b/Misc/NEWS index b8bcc21..0bfbd38 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -90,6 +90,9 @@ Library ------- +- Issue #13015: Fix a possible reference leak in defaultdict.__repr__. + Patch by Suman Saha. + - Issue #13979: A bug in ctypes.util.find_library that caused the wrong library name to be returned has been fixed.