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 Guillaume.Carre
Recipients Guillaume.Carre
Date 2014-07-29.21:42:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1406670130.27.0.606950005482.issue22102@psf.upfronthosting.co.za>
In-reply-to
Content
I've got a zip file with a Zip64 end of central directory locator in which:
- total number of disks = 0000
- number of the disk with the start of the zip64 end of central directory = 0000

According to the test line 176 in zipfile.py this fails:
    if diskno != 0 or disks != 1:
        raise BadZipfile("zipfiles that span multiple disks are not supported")

I believe the test should be changed to  
    if diskno != 0 or disks > 1:
History
Date User Action Args
2014-07-29 21:42:10Guillaume.Carresetrecipients: + Guillaume.Carre
2014-07-29 21:42:10Guillaume.Carresetmessageid: <1406670130.27.0.606950005482.issue22102@psf.upfronthosting.co.za>
2014-07-29 21:42:10Guillaume.Carrelinkissue22102 messages
2014-07-29 21:42:10Guillaume.Carrecreate