summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-09-23 18:35:57 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-09-23 18:35:57 (GMT)
commit07314bcbe7fbad4c073949781ed2025a0ff65a74 (patch)
treeb6425f5405c0df5b9413e25b16331b29407b0b34 /Misc/NEWS
parentcbcbfdf19f7e2824c95d534bab67839b693805dc (diff)
parentcfbb394488aba172199b684c7266240280c0ebd2 (diff)
downloadcpython-07314bcbe7fbad4c073949781ed2025a0ff65a74.zip
cpython-07314bcbe7fbad4c073949781ed2025a0ff65a74.tar.gz
cpython-07314bcbe7fbad4c073949781ed2025a0ff65a74.tar.bz2
Issue #21866: ZipFile.close() no longer writes ZIP64 central directory
records if allowZip64 is false.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bce9ad9..dd88aa2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -137,6 +137,9 @@ Core and Builtins
Library
-------
+- Issue #21866: ZipFile.close() no longer writes ZIP64 central directory
+ records if allowZip64 is false.
+
- Issue #22278: Fix urljoin problem with relative urls, a regression observed
after changes to issue22118 were submitted.