From: Antoine Pitrou Date: Sat, 17 Nov 2012 22:54:40 +0000 (+0100) Subject: Issue #16408: Fix file descriptors not being closed in error conditions in the zipfil... X-Git-Tag: v3.4.0a1~1989 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8f1fefab9a0816dd9fb089a7a0398e195a8e4b97;p=thirdparty%2FPython%2Fcpython.git Issue #16408: Fix file descriptors not being closed in error conditions in the zipfile module. Patch by Serhiy Storchaka. --- 8f1fefab9a0816dd9fb089a7a0398e195a8e4b97 diff --cc Misc/NEWS index df8f014a43f3,0cf165eb308a..178cf2b2ef52 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -130,18 -88,11 +130,21 @@@ Core and Builtin Library ------- + - Issue #16408: Fix file descriptors not being closed in error conditions + in the zipfile module. Patch by Serhiy Storchaka. + +- Issue #14631: Add a new :class:`weakref.WeakMethod` to simulate weak + references to bound methods. + +- Issue #16469: Fix exceptions from float -> Fraction and Decimal -> Fraction + conversions for special values to be consistent with those for float -> int + and Decimal -> int. Patch by Alexey Kachayev. + - Issue #16481: multiprocessing no longer leaks process handles on Windows. +- Issue #12428: Add a pure Python implementation of functools.partial(). + Patch by Brian Thorne. + - Issue #16140: The subprocess module no longer double closes its child subprocess.PIPE parent file descriptors on child error prior to exec().