summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-01-31 13:29:20 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-01-31 13:29:20 (GMT)
commitd72bfe9eb90da597b41b37ce32f87f995a2c22c5 (patch)
treebd04e40b23864a6440e318d70beeceb3d75dc7b3 /Misc
parent58ed80efa636b3dcf7238ac52055a102a641e547 (diff)
parentd2b1527f1418f4bac9d05933623ef1a9d1948f61 (diff)
downloadcpython-d72bfe9eb90da597b41b37ce32f87f995a2c22c5.zip
cpython-d72bfe9eb90da597b41b37ce32f87f995a2c22c5.tar.gz
cpython-d72bfe9eb90da597b41b37ce32f87f995a2c22c5.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 8a5510f..206ede0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -164,6 +164,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 #17071: Signature.bind() now works when one of the keyword arguments
is named ``self``.