From: Serhiy Storchaka Date: Fri, 20 May 2016 19:31:50 +0000 (+0300) Subject: Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N" X-Git-Tag: v3.6.0a2~251 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2a95219bc42ff23724d3230f3bcdb2584cd07914;p=thirdparty%2FPython%2Fcpython.git Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N" format unit. --- 2a95219bc42ff23724d3230f3bcdb2584cd07914 diff --cc Misc/NEWS index 628426ba56b4,ef1a65fdb82d..86b65ad55082 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -41,10 -10,13 +41,13 @@@ Release date: 2016-05-1 Core and Builtins ----------------- + - Issue #26168: Fixed possible refleaks in failing Py_BuildValue() with the "N" + format unit. + - Issue #26991: Fix possible refleak when creating a function with annotations. -- Issue #27039: Fixed bytearray.remove() for values greater than 127. Patch by - Joe Jevnik. +- Issue #27039: Fixed bytearray.remove() for values greater than 127. Based on + patch by Joe Jevnik. - Issue #23640: int.from_bytes() no longer bypasses constructors for subclasses.