This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author bgilbert
Recipients bgilbert
Date 2014-06-25.05:56:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403675769.56.0.836465783864.issue21866@psf.upfronthosting.co.za>
In-reply-to
Content
The ZipFile documentation says:

> If allowZip64 is True (the default) zipfile will create ZIP files that
> use the ZIP64 extensions when the zipfile is larger than 2 GiB. If it
> is false zipfile will raise an exception when the ZIP file would
> require ZIP64 extensions.

ZipFile.close() will write ZIP64 central directory records if e.g. a member's local file header starts at an offset > 2 GB, or if there are more than 65535 files in the archive.  It will do this even if allowZip64 is False, whereas the documentation implies that it should raise an exception in that case.
History
Date User Action Args
2014-06-25 05:56:09bgilbertsetrecipients: + bgilbert
2014-06-25 05:56:09bgilbertsetmessageid: <1403675769.56.0.836465783864.issue21866@psf.upfronthosting.co.za>
2014-06-25 05:56:09bgilbertlinkissue21866 messages
2014-06-25 05:56:09bgilbertcreate