summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-04-01 14:05:46 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-04-01 14:05:46 (GMT)
commitfe9417726c8d2a15ae11f553ae521c3ba6dfc6b7 (patch)
tree04e618c07a90c5ac56dfb49dd1430ebc192e1ed8 /Misc
parentd987c0221cf6601ab65ddf00ca62475d56e6cbd4 (diff)
downloadcpython-fe9417726c8d2a15ae11f553ae521c3ba6dfc6b7.zip
cpython-fe9417726c8d2a15ae11f553ae521c3ba6dfc6b7.tar.gz
cpython-fe9417726c8d2a15ae11f553ae521c3ba6dfc6b7.tar.bz2
Issue #13019: Fix potential reference leaks in bytearray.extend().
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 9c848e4..15c943c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9,6 +9,9 @@ What's New in Python 2.7.4
Core and Builtins
-----------------
+- Issue #13019: Fix potential reference leaks in bytearray.extend(). Patch
+ by Suman Saha.
+
- Issue #14378: Fix compiling ast.ImportFrom nodes with a "__future__" string as
the module name that was not interned.