summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-01-31 13:27:07 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-01-31 13:27:07 (GMT)
commitd2b1527f1418f4bac9d05933623ef1a9d1948f61 (patch)
treeedf98076cc77cb2f10c05129e9225bacb6a991d6 /Misc
parentfc20d77b408937723e9105f0d5a55d322a8d6853 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7400f5e..34f4a6b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.