From: Christian Heimes Date: Tue, 6 Aug 2013 14:03:33 +0000 (+0200) Subject: Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails. X-Git-Tag: v3.4.0a2~288 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=73207e03adba704d783997f6261b810ccc4231e4;p=python Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails. --- 73207e03adba704d783997f6261b810ccc4231e4 diff --cc Misc/NEWS index 17a1a5a6e3,35e1ae5289..968065a780 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,24 -12,8 +10,27 @@@ Projected Release date: 2013-09-0 Core and Builtins ----------------- + - Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() - fails. ++ fail ++ +- Issue #17934: Add a clear() method to frame objects, to help clean up + expensive details (local variables) and break reference cycles. + +Library +------- + +- Issue #4885: Add weakref support to mmap objects. Patch by Valerie Lambert. + +- Issue #8860: Fixed rounding in timedelta constructor. + + +What's New in Python 3.4.0 Alpha 1? +=================================== + +Release date: 2013-08-03 + +Core and Builtins +----------------- - Issue #16741: Fix an error reporting in int().