From: Benjamin Peterson Date: Sun, 5 Jul 2015 15:39:47 +0000 (-0500) Subject: 'free-after-use' is not a bug :) (closes #24568) X-Git-Tag: v2.7.11rc1~256 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3ce0b06712d0bb5bd39e3c420b99f03553edcc50;p=thirdparty%2FPython%2Fcpython.git 'free-after-use' is not a bug :) (closes #24568) --- diff --git a/Misc/NEWS b/Misc/NEWS index 1496398bb130..38462ba075b1 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -138,7 +138,7 @@ Library - Issue #23008: Fixed resolving attributes with boolean value is False in pydoc. -- Issues #24099, #24100, and #24101: Fix free-after-use bug in heapq's siftup +- Issues #24099, #24100, and #24101: Fix use-after-use bug in heapq's siftup and siftdown functions. - Backport collections.deque fixes from Python 3.5. Prevents reentrant badness