summaryrefslogtreecommitdiff
path: root/Doc/library/http.client.rst
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-03-17 06:42:48 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-03-17 06:42:48 +0000
commit06a2f6dd2dd4627a3618819eba39b00647144789 (patch)
tree5ae79a2d7ca492903444e010f7ac7609f64d5731 /Doc/library/http.client.rst
parenta89b494755360aa6c01dad2ab19af0ae16ffbf21 (diff)
downloadcpython-06a2f6dd2dd4627a3618819eba39b00647144789.tar.gz
Issue #26499: Fixes to HTTPResponse.readline() and read1(), by Silent Ghost
Diffstat (limited to 'Doc/library/http.client.rst')
-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 f42afe91c5..649abd1587 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])