summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-04-01 14:08:11 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-04-01 14:08:11 (GMT)
commit29b964d0ddebad90c252139911f6702632b55b8a (patch)
treef19de550844eac79362d3c46d158ed578b4aa426 /Misc
parent2d95c4e835829c993feb1e3b35c572d9a9a6eb02 (diff)
parent58bb82e7b4b50fa5efaefc1196bd927992fbe783 (diff)
downloadcpython-29b964d0ddebad90c252139911f6702632b55b8a.zip
cpython-29b964d0ddebad90c252139911f6702632b55b8a.tar.gz
cpython-29b964d0ddebad90c252139911f6702632b55b8a.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 3a4dfe0..12ca91b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Alpha 2?
Core and Builtins
-----------------
+- Issue #13019: Fix potential reference leaks in bytearray.extend(). Patch
+ by Suman Saha.
+
- Issue #1683368: object.__new__ and object.__init__ raise a TypeError if they
are passed arguments and their complementary method is not overridden.