Issue #20007: HTTPResponse.read(0) no more prematurely closes connection.
Original patch by Simon Sapin.
diff --git a/Misc/ACKS b/Misc/ACKS
index 35c9cf0..0ec87b3 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -904,6 +904,7 @@
Rich Salz
Kevin Samborn
Ilya Sandler
+Simon Sapin
Mark Sapiro
Ty Sarna
Hugh Sasse
diff --git a/Misc/NEWS b/Misc/NEWS
index 5f74858..d4a1206 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@
Library
-------
+- Issue #20007: HTTPResponse.read(0) no more prematurely closes connection.
+ Original patch by Simon Sapin.
+
- Issue #19912: Fixed numerous bugs in ntpath.splitunc().
- Issue #19623: Fixed writing to unseekable files in the aifc module.