[issue41068] zipfile: read after write fails for non-ascii files

2020-06-28 Thread Ned Deily
Change by Ned Deily : -- versions: -Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41068] zipfile: read after write fails for non-ascii files

2020-06-22 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue41068] zipfile: read after write fails for non-ascii files

2020-06-22 Thread miss-islington
miss-islington added the comment: New changeset c916c48afc02c26a50843c7b381a2b567bb72e46 by Miss Islington (bot) in branch '3.9': bpo-41068: Fix read after write in zipfile for non-ASCII files names. (GH-21040) https://github.com/python/cpython/commit/c916c48afc02c26a50843c7b381a2b567bb72e46

[issue41068] zipfile: read after write fails for non-ascii files

2020-06-22 Thread miss-islington
miss-islington added the comment: New changeset d7f37d1ed4fd38555e3e5aad32d515c96b528df5 by Miss Islington (bot) in branch '3.8': bpo-41068: Fix read after write in zipfile for non-ASCII files names. (GH-21040) https://github.com/python/cpython/commit/d7f37d1ed4fd38555e3e5aad32d515c96b528df5

[issue41068] zipfile: read after write fails for non-ascii files

2020-06-22 Thread miss-islington
Change by miss-islington : -- pull_requests: +20221 pull_request: https://github.com/python/cpython/pull/21050 ___ Python tracker ___

[issue41068] zipfile: read after write fails for non-ascii files

2020-06-22 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 1.0 -> 2.0 pull_requests: +20219 pull_request: https://github.com/python/cpython/pull/21048 ___ Python tracker

[issue41068] zipfile: read after write fails for non-ascii files

2020-06-22 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 36ff513f82e372ed3cea0bf7cbdf15a1ef6dab9e by Serhiy Storchaka in branch 'master': bpo-41068: Fix read after write in zipfile for non-ASCII files names. (GH-21040)

[issue41068] zipfile: read after write fails for non-ascii files

2020-06-22 Thread miss-islington
Change by miss-islington : -- pull_requests: +20220 pull_request: https://github.com/python/cpython/pull/21049 ___ Python tracker ___

[issue41068] zipfile: read after write fails for non-ascii files

2020-06-22 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +20211 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21040 ___ Python tracker

[issue41068] zipfile: read after write fails for non-ascii files

2020-06-21 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue41068] zipfile: read after write fails for non-ascii files

2020-06-21 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : When open a ZIP archive, write a file with non-ascii name in it, and, not closing the archive, read that file back, it fails: >>> import zipfile >>> with zipfile.ZipFile('test.zip', 'w') as zf: ... zf.writestr('йцукен', '') ... zf.read('йцукен')