diff options
author | Gregory P. Smith <greg@krypto.org> | 2014-05-30 06:42:47 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2014-05-30 06:42:47 (GMT) |
commit | e7bfe13635e4201660c9d016b62de10c2f7c9de3 (patch) | |
tree | ce15026563908fd49b5a5e6fea1054206c5d7733 /Misc | |
parent | 12c5247be9f30052733d4cda26af5344292582ec (diff) | |
parent | 0af8a86be85ecf1899d0770c6d31541128ea8cad (diff) | |
download | cpython-e7bfe13635e4201660c9d016b62de10c2f7c9de3.zip cpython-e7bfe13635e4201660c9d016b62de10c2f7c9de3.tar.gz cpython-e7bfe13635e4201660c9d016b62de10c2f7c9de3.tar.bz2 |
Fix issue #14315: The zipfile module now ignores extra fields in the central
directory that are too short to be parsed instead of letting a struct.unpack
error bubble up as this "bad data" appears in many real world zip files in the
wild and is ignored by other zip tools.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -89,6 +89,11 @@ Core and Builtins Library ------- +- Issue #14315: The zipfile module now ignores extra fields in the central + directory that are too short to be parsed instead of letting a struct.unpack + error bubble up as this "bad data" appears in many real world zip files in + the wild and is ignored by other zip tools. + - Issue #21402: tkinter.ttk now works when default root window is not set. - Issue #3015: _tkinter.create() now creates tkapp object with wantobject=1 by |