Message374196
This routine will repro the issue without relying on garbage collection to trigger the error:
```
import io
import zipfile
buf = io.BytesIO()
zf = zipfile.ZipFile(buf, mode='w')
zp = zipfile.Path(zf)
with zp.joinpath('zile-a').open('w') as fp:
fp.write('contents of file-a')
zf.close()
buf.close()
zp.root.close()
``` |
|
Date |
User |
Action |
Args |
2020-07-24 16:30:21 | jaraco | set | recipients:
+ jaraco, Jeffrey.Kintscher, rishi93, Nick Henderson |
2020-07-24 16:30:21 | jaraco | set | messageid: <1595608221.79.0.469491246322.issue41350@roundup.psfhosted.org> |
2020-07-24 16:30:21 | jaraco | link | issue41350 messages |
2020-07-24 16:30:21 | jaraco | create | |
|