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 longavailable
Recipients alanmcintyre, longavailable, serhiy.storchaka, twouters
Date 2020-06-24.12:19:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1593001145.16.0.222635534542.issue41102@roundup.psfhosted.org>
In-reply-to
Content
I used zipfile module to archive thousands of .geojson file to zip files and access those .geojson file by ZipFile.open() method. In my hundreds of runnings, one of them was abnormal.
As the title says, the ZipFile.namelist() did not match all the files in .zip file. And I extracted it by extractall() method and it only got those files included in the namelist. On the other hand, I extracted it by my compress software (360zip). I got the other files unincluded in the namelist(). Only one file (2564.geojson) appeared with these two extract methods.
ZipFile.extractall() method got 674 files from '2654.geojson' to '3989.geojson'.
360zip got 1399 files from '0000.geojson' to '2654.geojson'.
The abnormal file is too big to upload this page and I uploaded to google drive:
https://drive.google.com/file/d/1UE2N2qwjn4m7uE6YF2A1FhdXYHP_7zQr/view?usp=sharing
History
Date User Action Args
2020-06-24 12:19:05longavailablesetrecipients: + longavailable, twouters, alanmcintyre, serhiy.storchaka
2020-06-24 12:19:05longavailablesetmessageid: <1593001145.16.0.222635534542.issue41102@roundup.psfhosted.org>
2020-06-24 12:19:05longavailablelinkissue41102 messages
2020-06-24 12:19:04longavailablecreate