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)
commit58bb82e7b4b50fa5efaefc1196bd927992fbe783 (patch)
tree297fc8ec19a5e746c40b6b140dba83f90b9e3c0c /Misc
parent165a2c2e27c07ac0c1ab5092a79f7f30c6c2a0d6 (diff)
downloadcpython-58bb82e7b4b50fa5efaefc1196bd927992fbe783.zip
cpython-58bb82e7b4b50fa5efaefc1196bd927992fbe783.tar.gz
cpython-58bb82e7b4b50fa5efaefc1196bd927992fbe783.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 32c0b9e..4bf3a91 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.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.