#14399: zipfile now correctly handles comments added to empty zipfiles.
Patch by Serhiy Storchaka.
diff --git a/Misc/ACKS b/Misc/ACKS
index e36e626..af0cd5f 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -814,6 +814,7 @@
Peter Stoehr
Casper Stoel
Michael Stone
+Serhiy Storchaka
Ken Stox
Patrick Strawderman
Dan Stromberg
diff --git a/Misc/NEWS b/Misc/NEWS
index 8aa7315..64ecbd6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -44,6 +44,10 @@
Library
-------
+- Issue #14399: zipfile now correctly adds a comment even when the zipfile
+ being created is otherwise empty. As a consequence of this fix, ZipFile is
+ now a new style class.
+
- 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.