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.

classification
Title: Simplify decoding the ZIP64 extra field and make it tolerant to extra data
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: serhiy.storchaka
Priority: normal Keywords: patch

Created on 2019-10-29 20:35 by serhiy.storchaka, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 16988 merged serhiy.storchaka, 2019-10-29 20:36
Messages (2)
msg355676 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2019-10-29 20:35
The decoding code can be much shorter and efficient.

Also, the Info-ZIP unzip utility is tolerant to extra bytes. We can be too.
msg356297 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2019-11-09 11:13
New changeset e27449da92b13730a5e11182f329d5da98a5e05b by Serhiy Storchaka in branch 'master':
bpo-38635: Simplify decoding the ZIP64 extra field and make it tolerant to extra data. (GH-16988)
https://github.com/python/cpython/commit/e27449da92b13730a5e11182f329d5da98a5e05b
History
Date User Action Args
2022-04-11 14:59:22adminsetgithub: 82816
2019-11-09 11:15:36serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-11-09 11:13:39serhiy.storchakasetmessages: + msg356297
2019-10-29 20:36:29serhiy.storchakasetkeywords: + patch
stage: patch review
pull_requests: + pull_request16514
2019-10-29 20:35:00serhiy.storchakacreate