summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-05-06 11:46:01 (GMT)
committerGitHub <noreply@github.com>2017-05-06 11:46:01 (GMT)
commit3763ea865cee5bbabcce11cd577811135e0fc747 (patch)
tree252d8b9b17b7985f3db9be6f0d72d675ce46f1e2 /Misc
parenta12df7b7d40dbf47825917c8fa03d2c09b5a382c (diff)
downloadcpython-3763ea865cee5bbabcce11cd577811135e0fc747.zip
cpython-3763ea865cee5bbabcce11cd577811135e0fc747.tar.gz
cpython-3763ea865cee5bbabcce11cd577811135e0fc747.tar.bz2
Revert bpo-26293 for zipfile breakage. See also bpo-29094. (#1484)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 0 insertions, 7 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0c403cb..a72fcef 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -602,9 +602,6 @@ Library
- Issue #28985: Update authorizer constants in sqlite3 module.
Patch by Dingyuan Wang.
-- Issue #29094: Offsets in a ZIP file created with extern file object and modes
- "w" and "x" now are relative to the start of the file.
-
- Issue #29079: Prevent infinite loop in pathlib.resolve() on Windows
- Issue #13051: Fixed recursion errors in large or resized
@@ -784,10 +781,6 @@ Library
- Issue #28317: The disassembler now decodes FORMAT_VALUE argument.
-- 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.