diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-07 19:24:20 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-07 19:24:20 (GMT) |
commit | 242c170f878cc38eb32b26b55f69a9d7cef947a7 (patch) | |
tree | 63fb8c5585cf916b4936885f2be87ea2b458833a /Misc/NEWS | |
parent | 5e80855af3537f9715b33539d5b9860ca533a288 (diff) | |
parent | 8793b215253bf69cc699fab77b12d7f1313360d8 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |