Issue #13464: Add a readinto() method to http.client.HTTPResponse.
Patch by Jon Kuhn.
diff --git a/Misc/ACKS b/Misc/ACKS
index 048e549..0beb5c9 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -547,6 +547,7 @@
Andrej Krpic
Ivan Krstić
Andrew Kuchling
+Jon Kuhn
Vladimir Kushnir
Ross Lagerwall
Cameron Laird
diff --git a/Misc/NEWS b/Misc/NEWS
index c98c956..2444ced 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -406,6 +406,9 @@
Library
-------
+- Issue #13464: Add a readinto() method to http.client.HTTPResponse. Patch
+ by Jon Kuhn.
+
- tarfile.py: Correctly detect bzip2 compressed streams with blocksizes
other than 900k.