diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-03-17 06:42:48 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-03-17 06:42:48 (GMT) |
commit | ce911c3fed7e6404fba7de3868b1000425984b1e (patch) | |
tree | 3c59e3e10f631a567a18c23b27dfe68f2f9e3484 /Doc | |
parent | 9528334e16abf1673edcfadf7007f55a864079b7 (diff) | |
download | cpython-ce911c3fed7e6404fba7de3868b1000425984b1e.zip cpython-ce911c3fed7e6404fba7de3868b1000425984b1e.tar.gz cpython-ce911c3fed7e6404fba7de3868b1000425984b1e.tar.bz2 |
Issue #26499: Fixes to HTTPResponse.readline() and read1(), by Silent Ghost
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/http.client.rst | 4 |
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]) |