diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-03-17 07:05:34 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-03-17 07:05:34 (GMT) |
commit | ec195fba5b4381b8b60fe8f9b400437f52b98371 (patch) | |
tree | 304d688d340ab4d28e190b18b6d9d4a752d4280a /Doc | |
parent | 82f04e2dfdd2bdfef5bd94f8d6615ac0a1f620b4 (diff) | |
parent | ce911c3fed7e6404fba7de3868b1000425984b1e (diff) | |
download | cpython-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.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]) |