From: Serhiy Storchaka Date: Thu, 31 Jan 2013 13:29:20 +0000 (+0200) Subject: Issue #4844: ZipFile now raises BadZipFile when opens a ZIP file with an X-Git-Tag: v3.3.1rc1~264 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d72bfe9eb90da597b41b37ce32f87f995a2c22c5;p=python Issue #4844: ZipFile now raises BadZipFile when opens a ZIP file with an incomplete "End of Central Directory" record. Original patch by Guilherme Polo and Alan McIntyre. --- d72bfe9eb90da597b41b37ce32f87f995a2c22c5 diff --cc Misc/NEWS index 8a5510fd12,34f4a6bdfe..206ede0049 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -164,8 -216,12 +164,12 @@@ Core and Builtin Library ------- + - Issue #4844: ZipFile now raises BadZipFile when opens a ZIP file with an + incomplete "End of Central Directory" record. Original patch by Guilherme + Polo and Alan McIntyre. + -- Issue #15505: `unittest.installHandler` no longer assumes SIGINT handler is - set to a callable object. +- Issue #17071: Signature.bind() now works when one of the keyword arguments + is named ``self``. - Issue #12004: Fix an internal error in PyZipFile when writing an invalid Python file. Patch by Ben Morgan.