Issue #4844: ZipFile now raises BadZipfile when opens a ZIP file with an
incomplete "End of Central Directory" record. Original patch by Guilherme
Polo and Alan McIntyre.
diff --git a/Misc/NEWS b/Misc/NEWS
index 6a3d9c7..34e4bda 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -202,6 +202,10 @@
Library
-------
+- Issue #4844: ZipFile now raises BadZipfile when opens a ZIP file with an
+ incomplete "End of Central Directory" record. Original patch by Guilherme
+ Polo and Alan McIntyre.
+
- Issue #15505: `unittest.installHandler` no longer assumes SIGINT handler is
set to a callable object.