summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS5
2 files changed, 6 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index aab5b20..625689d 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -887,6 +887,7 @@ Richard Stoakley
Peter Stoehr
Casper Stoel
Michael Stone
+Serhiy Storchaka
Ken Stox
Dan Stromberg
Daniel Stutzbach
diff --git a/Misc/NEWS b/Misc/NEWS
index a9fbd8d..5cccc4d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -39,6 +39,11 @@ Core and Builtins
Library
-------
+- Issue #14399: zipfile now correctly adds a comment even when the zipfile
+ being created is otherwise empty. In addition, the TypeError that results
+ from trying to set a non-binary value as a comment is now now raised at the
+ time the comment is set rather than at the time the zipfile is written.
+
- Issue #7978: socketserver now restarts the select() call when EINTR is
returned. This avoids crashing the server loop when a signal is received.
Patch by Jerzy Kozera.