diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-06-22 08:24:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-22 08:24:11 (GMT) |
commit | 36ff513f82e372ed3cea0bf7cbdf15a1ef6dab9e (patch) | |
tree | 0f488ab543c1728b4759f844d884fe2c265bdbf3 /Misc | |
parent | c88239f864a27f673c0f0a9e62d2488563f9d081 (diff) | |
download | cpython-36ff513f82e372ed3cea0bf7cbdf15a1ef6dab9e.zip cpython-36ff513f82e372ed3cea0bf7cbdf15a1ef6dab9e.tar.gz cpython-36ff513f82e372ed3cea0bf7cbdf15a1ef6dab9e.tar.bz2 |
bpo-41068: Fix read after write in zipfile for non-ASCII files names. (GH-21040)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-06-22-10-25-39.bpo-41068._bX2BW.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-06-22-10-25-39.bpo-41068._bX2BW.rst b/Misc/NEWS.d/next/Library/2020-06-22-10-25-39.bpo-41068._bX2BW.rst new file mode 100644 index 0000000..20580c7 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-06-22-10-25-39.bpo-41068._bX2BW.rst @@ -0,0 +1,2 @@ +Fixed reading files with non-ASCII names from ZIP archive directly after +writing them. |