summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-03-17 07:05:34 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-03-17 07:05:34 (GMT)
commitec195fba5b4381b8b60fe8f9b400437f52b98371 (patch)
tree304d688d340ab4d28e190b18b6d9d4a752d4280a /Doc
parent82f04e2dfdd2bdfef5bd94f8d6615ac0a1f620b4 (diff)
parentce911c3fed7e6404fba7de3868b1000425984b1e (diff)
downloadcpython-ec195fba5b4381b8b60fe8f9b400437f52b98371.zip
cpython-ec195fba5b4381b8b60fe8f9b400437f52b98371.tar.gz
cpython-ec195fba5b4381b8b60fe8f9b400437f52b98371.tar.bz2
Issue #26499: Merge HTTPResponse fix from 3.5
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/http.client.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/http.client.rst b/Doc/library/http.client.rst
index f42afe9..649abd1 100644
--- a/Doc/library/http.client.rst
+++ b/Doc/library/http.client.rst
@@ -362,6 +362,10 @@ server. It provides access to the request headers and the entity
body. The response is an iterable object and can be used in a with
statement.
+.. versionchanged:: 3.5
+ The :class:`io.BufferedIOBase` interface is now implemented and
+ all of its reader operations are supported.
+
.. method:: HTTPResponse.read([amt])