summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-07 19:24:20 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-07 19:24:20 (GMT)
commit242c170f878cc38eb32b26b55f69a9d7cef947a7 (patch)
tree63fb8c5585cf916b4936885f2be87ea2b458833a /Misc/NEWS
parent5e80855af3537f9715b33539d5b9860ca533a288 (diff)
parent8793b215253bf69cc699fab77b12d7f1313360d8 (diff)
downloadcpython-242c170f878cc38eb32b26b55f69a9d7cef947a7.zip
cpython-242c170f878cc38eb32b26b55f69a9d7cef947a7.tar.gz
cpython-242c170f878cc38eb32b26b55f69a9d7cef947a7.tar.bz2
Issue #26293: Fixed writing ZIP files that starts not from the start of the
file. Offsets in ZIP file now are relative to the start of the archive in conforming to the specification.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2edec5e..051c5f6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -56,6 +56,10 @@ Core and Builtins
Library
-------
+- Issue #26293: Fixed writing ZIP files that starts not from the start of the
+ file. Offsets in ZIP file now are relative to the start of the archive in
+ conforming to the specification.
+
- Issue #28380: unittest.mock Mock autospec functions now properly support
assert_called, assert_not_called, and assert_called_once.