summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-22 12:49:58 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-22 12:49:58 (GMT)
commit8bc792a602311e426cbd69293627fdc9287a5c7b (patch)
tree24eac68b6a0c114c14a9efacc043b85b41025a1d /Misc
parent04d759b1e4cb5b2d9ed13555e952565ccd3ce3bd (diff)
downloadcpython-8bc792a602311e426cbd69293627fdc9287a5c7b.zip
cpython-8bc792a602311e426cbd69293627fdc9287a5c7b.tar.gz
cpython-8bc792a602311e426cbd69293627fdc9287a5c7b.tar.bz2
Issue #25624: ZipFile now always writes a ZIP_STORED header for directory
entries. Patch by Dingyuan Wang.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index ec572a1..4b41efa 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1471,6 +1471,7 @@ Richard Walker
Larry Wall
Kevin Walzer
Rodrigo Steinmuller Wanderley
+Dingyuan Wang
Ke Wang
Greg Ward
Tom Wardill
diff --git a/Misc/NEWS b/Misc/NEWS
index 6a5f53e..a13e198 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -106,6 +106,9 @@ Core and Builtins
Library
-------
+- Issue #25624: ZipFile now always writes a ZIP_STORED header for directory
+ entries. Patch by Dingyuan Wang.
+
- Issue #25583: Avoid incorrect errors raised by os.makedirs(exist_ok=True)
when the OS gives priority to errors such as EACCES over EEXIST.