summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2011-06-09 20:01:09 (GMT)
committerR David Murray <rdmurray@bitdance.com>2011-06-09 20:01:09 (GMT)
commit873c583244193f15b57293bce579c8410e747e20 (patch)
tree7b549c06b75c6ec2943c56bb0a270d4baa0ec183 /Misc
parent5446f08c608d8e0041c8bb27b74be713db050177 (diff)
downloadcpython-873c583244193f15b57293bce579c8410e747e20.zip
cpython-873c583244193f15b57293bce579c8410e747e20.tar.gz
cpython-873c583244193f15b57293bce579c8410e747e20.tar.bz2
#10694: zipfile now ignores garbage at the end of a zipfile.
Original fix by 'rep', final patch (with tests) by Xuanji Li.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3419894..4f4951c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,8 @@ Core and Builtins
Library
-------
+- Issue #10694: zipfile now ignores garbage at the end of a zipfile.
+
- Issue #11583: Speed up os.path.isdir on Windows by using GetFileAttributes
instead of os.stat.