diff options
author | Silas Sewell <silas@sewell.org> | 2018-09-18 17:00:05 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-09-18 17:00:05 (GMT) |
commit | 4ba3b50bfe6d50cd82d208023ea23e203ab50589 (patch) | |
tree | e6b460ddc7de1ef0268f7717943f41556c488314 /Misc | |
parent | d0f49d2f5085ca68e3dc8725f1fb1c9674bfb5ed (diff) | |
download | cpython-4ba3b50bfe6d50cd82d208023ea23e203ab50589.zip cpython-4ba3b50bfe6d50cd82d208023ea23e203ab50589.tar.gz cpython-4ba3b50bfe6d50cd82d208023ea23e203ab50589.tar.bz2 |
bpo-34472: Add data descriptor signature to zipfile (GH-8871)
This makes streamed zips compatible with MacOS Archive Utility and
other applications.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-08-23-09-25-08.bpo-34472.cGyYrO.rst | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -1468,6 +1468,7 @@ Roger D. Serwy Jerry Seutter Pete Sevander Denis Severson +Silas Sewell Ian Seyer Dmitry Shachnev Anish Shah diff --git a/Misc/NEWS.d/next/Library/2018-08-23-09-25-08.bpo-34472.cGyYrO.rst b/Misc/NEWS.d/next/Library/2018-08-23-09-25-08.bpo-34472.cGyYrO.rst new file mode 100644 index 0000000..208ec0b --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-08-23-09-25-08.bpo-34472.cGyYrO.rst @@ -0,0 +1,3 @@ +Improved compatibility for streamed files in :mod:`zipfile`. Previously an +optional signature was not being written and certain ZIP applications were +not supported. Patch by Silas Sewell. |