[issue44173] Stored (uncompressed) ZipExtFile in zipfile can be seekable at lower cost

2021-08-11 Thread JuniorJPDJ
Change by JuniorJPDJ : -- pull_requests: +26217 pull_request: https://github.com/python/cpython/pull/27737 ___ Python tracker <https://bugs.python.org/issue44

[issue44173] Stored (uncompressed) ZipExtFile in zipfile can be seekable at lower cost

2021-05-18 Thread JuniorJPDJ
Change by JuniorJPDJ : -- keywords: +patch pull_requests: +24844 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26227 ___ Python tracker <https://bugs.python.org/issu

[issue44173] Stored (uncompressed) ZipExtFile in zipfile can be seekable at lower cost

2021-05-18 Thread JuniorJPDJ
New submission from JuniorJPDJ : 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