[issue36991] zipfile: AttributeError on extract

2021-06-26 Thread Gregory P. Smith
Change by Gregory P. Smith : -- stage: patch review -> resolved status: pending -> closed ___ Python tracker ___ ___

[issue36991] zipfile: AttributeError on extract

2021-06-24 Thread Irit Katriel
Irit Katriel added the comment: This seems resolved, can we close? -- nosy: +iritkatriel resolution: -> fixed status: open -> pending ___ Python tracker ___

[issue36991] zipfile: AttributeError on extract

2019-09-12 Thread miss-islington
miss-islington added the comment: New changeset 717cc61ed103684b8c73e0e8af10ace345f39f16 by Miss Islington (bot) in branch '3.8': bpo-36991: Fix incorrect exception escaping ZipFile.extract() (GH-13632) https://github.com/python/cpython/commit/717cc61ed103684b8c73e0e8af10ace345f39f16

[issue36991] zipfile: AttributeError on extract

2019-09-12 Thread miss-islington
Change by miss-islington : -- keywords: +patch pull_requests: +15674 pull_request: https://github.com/python/cpython/pull/16052 ___ Python tracker ___

[issue36991] zipfile: AttributeError on extract

2019-09-12 Thread Gregory P. Smith
Gregory P. Smith added the comment: New changeset 2f1b857562b0f1601c9019db74c29b7d7e21ac9f by Gregory P. Smith (Berker Peksag) in branch 'master': bpo-36991: Fix incorrect exception escaping ZipFile.extract() (GH-13632)

[issue36991] zipfile: AttributeError on extract

2019-09-12 Thread Gregory P. Smith
Change by Gregory P. Smith : -- assignee: -> gregory.p.smith nosy: +gregory.p.smith versions: +Python 3.9 ___ Python tracker ___

[issue36991] zipfile: AttributeError on extract

2019-05-28 Thread Berker Peksag
Berker Peksag added the comment: The OP's report is valid and they already stated that the file is malformed. More importantly, this can be reproduced with a valid ZIP file as well. The correct behavior is to get RuntimeError in this case. _check_compression() needs to be called before

[issue36991] zipfile: AttributeError on extract

2019-05-28 Thread Berker Peksag
Change by Berker Peksag : -- pull_requests: +13532 pull_request: https://github.com/python/cpython/pull/13632 ___ Python tracker ___

[issue36991] zipfile: AttributeError on extract

2019-05-22 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I also recommend that you read this document about the compilation and installation of Python and its dependencies. https://devguide.python.org/setup/#compile-and-build Thank you -- ___ Python tracker

[issue36991] zipfile: AttributeError on extract

2019-05-22 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi, Thank you for your report 1. but do you have the bz2 lib on your system, because without that, Python is not compiled with the support of this format. 2. your file seems to have an issue. unzip attr0.zip Archive: attr0.zip inflating:

[issue36991] zipfile: AttributeError on extract

2019-05-21 Thread alter-bug-tracer
New submission from alter-bug-tracer : The following code throws an AttributeError when attempting to extract a malformed archive (attached): import zipfile import sys zf = zipfile.ZipFile(sys.argv[1]) for info in zf.infolist(): zf.extract(info.filename) Result: Traceback (most recent