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 juniorjpdj
Recipients juniorjpdj
Date 2021-05-19.02:28:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1621391319.87.0.895694633998.issue44173@roundup.psfhosted.org>
In-reply-to
Content
At the moment stored ZipExtFile is being read to the place of seek like all other compressed variants.
It's not needed as it's possible to freely seek uncompressed file inside zip without this penalty.

Lots of apps depend on ZipExtFile seeking ability and it would lower performance and IO penalty significantly.

I've POC patch created.
It disables CRC checking after first seek as it's impossible to check CRC if we are not reading whole file.
History
Date User Action Args
2021-05-19 02:28:39juniorjpdjsetrecipients: + juniorjpdj
2021-05-19 02:28:39juniorjpdjsetmessageid: <1621391319.87.0.895694633998.issue44173@roundup.psfhosted.org>
2021-05-19 02:28:39juniorjpdjlinkissue44173 messages
2021-05-19 02:28:39juniorjpdjcreate