commit | fe9417726c8d2a15ae11f553ae521c3ba6dfc6b7 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Sun Apr 01 16:05:46 2012 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Sun Apr 01 16:05:46 2012 +0200 |
tree | 04e618c07a90c5ac56dfb49dd1430ebc192e1ed8 | |
parent | d987c0221cf6601ab65ddf00ca62475d56e6cbd4 [diff] [blame] |
Issue #13019: Fix potential reference leaks in bytearray.extend(). Patch by Suman Saha.
diff --git a/Misc/NEWS b/Misc/NEWS index 9c848e4..15c943c 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -9,6 +9,9 @@ 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.