summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-09-17 12:36:40 (GMT)
committerGitHub <noreply@github.com>2018-09-17 12:36:40 (GMT)
commit9bdb7be482aef8f60daa1d36606568a132dcb616 (patch)
tree4674ee096eb080080b2d0f435e7e6a9e1808f277 /Misc
parentda8d72c953369b872a12c13f136ada77a786714a (diff)
downloadcpython-9bdb7be482aef8f60daa1d36606568a132dcb616.zip
cpython-9bdb7be482aef8f60daa1d36606568a132dcb616.tar.gz
cpython-9bdb7be482aef8f60daa1d36606568a132dcb616.tar.bz2
bpo-34341: Fix appending to ZIP archives with the ZIP64 extension. (GH-8683)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-08-06-11-01-18.bpo-34341.E0b9p2.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-08-06-11-01-18.bpo-34341.E0b9p2.rst b/Misc/NEWS.d/next/Library/2018-08-06-11-01-18.bpo-34341.E0b9p2.rst
new file mode 100644
index 0000000..46a9cde
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-08-06-11-01-18.bpo-34341.E0b9p2.rst
@@ -0,0 +1,2 @@
+Appending to the ZIP archive with the ZIP64 extension no longer grows the
+size of extra fields of existing entries.