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 jaraco
Recipients christian.steinmeyer, jack__d, jaraco, xtreak
Date 2021-07-16.00:39:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1626395966.31.0.829163660088.issue44638@roundup.psfhosted.org>
In-reply-to
Content
Here's a much simpler repro that avoids the class construction but triggers the same error:

```
import zipfile


zip_file = zipfile.ZipFile('zipfile.zip')
names = [each.name for each in zipfile.Path(zip_file).iterdir()]
with zip_file.open(names[0]) as file:
    print(file.read())
```
History
Date User Action Args
2021-07-16 00:39:26jaracosetrecipients: + jaraco, xtreak, jack__d, christian.steinmeyer
2021-07-16 00:39:26jaracosetmessageid: <1626395966.31.0.829163660088.issue44638@roundup.psfhosted.org>
2021-07-16 00:39:26jaracolinkissue44638 messages
2021-07-16 00:39:26jaracocreate