summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-03-04 14:47:50 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-03-04 14:47:50 (GMT)
commitb1efa53662385ba64289d9fe6fb8ca5b431c4119 (patch)
tree0b4aa7cebe47ada3cb12b4ef3d9a155fd79e2158 /Misc
parent296069301ac51d95fe5e30b4abf518940f10346d (diff)
downloadcpython-b1efa53662385ba64289d9fe6fb8ca5b431c4119.zip
cpython-b1efa53662385ba64289d9fe6fb8ca5b431c4119.tar.gz
cpython-b1efa53662385ba64289d9fe6fb8ca5b431c4119.tar.bz2
fix possible setdefault refleak (closes #17328)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0b1da99..958cc1a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 3.3.1?
Core and Builtins
-----------------
+- Issue #17328: Fix possible refleak in dict.setdefault.
+
- Issue #17223: array module: Fix a crasher when converting an array containing
invalid characters (outside range [U+0000; U+10ffff]) to Unicode:
repr(array), str(array) and array.tounicode(). Patch written by Manuel Jacob.