diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-31 13:27:07 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-01-31 13:27:07 (GMT) |
commit | d2b1527f1418f4bac9d05933623ef1a9d1948f61 (patch) | |
tree | edf98076cc77cb2f10c05129e9225bacb6a991d6 /Misc | |
parent | fc20d77b408937723e9105f0d5a55d322a8d6853 (diff) | |
download | cpython-d2b1527f1418f4bac9d05933623ef1a9d1948f61.zip cpython-d2b1527f1418f4bac9d05933623ef1a9d1948f61.tar.gz cpython-d2b1527f1418f4bac9d05933623ef1a9d1948f61.tar.bz2 |
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.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -216,6 +216,10 @@ Core and Builtins 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. |