From: Antoine Pitrou Date: Sun, 1 Apr 2012 14:08:11 +0000 (+0200) Subject: Issue #13019: Fix potential reference leaks in bytearray.extend(). X-Git-Tag: v3.3.0a3~343 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=29b964d0ddebad90c252139911f6702632b55b8a;p=python Issue #13019: Fix potential reference leaks in bytearray.extend(). Patch by Suman Saha. --- 29b964d0ddebad90c252139911f6702632b55b8a diff --cc Misc/NEWS index 3a4dfe089d,4bf3a916b6..12ca91bf17 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,9 -10,9 +10,12 @@@ 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. + - Issue #14378: Fix compiling ast.ImportFrom nodes with a "__future__" string as the module name that was not interned.