diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2013-03-19 08:22:56 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2013-03-19 08:22:56 (GMT) |
commit | aced69fd3f210099a31a951d6ac6440c95a76630 (patch) | |
tree | 52d5a7ce72dd582cb205e4ead1397648f2799abf /Doc/library/http.client.rst | |
parent | 3ab68a49d113da265571c4570db6626efb37bc35 (diff) | |
parent | 2f306c03d34441cb7b3a526d176ff39cbf484d63 (diff) | |
download | cpython-aced69fd3f210099a31a951d6ac6440c95a76630.zip cpython-aced69fd3f210099a31a951d6ac6440c95a76630.tar.gz cpython-aced69fd3f210099a31a951d6ac6440c95a76630.tar.bz2 |
#17460 - merge from 3.3
Diffstat (limited to 'Doc/library/http.client.rst')
-rw-r--r-- | Doc/library/http.client.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Doc/library/http.client.rst b/Doc/library/http.client.rst index c4c7617..0fad566 100644 --- a/Doc/library/http.client.rst +++ b/Doc/library/http.client.rst @@ -51,6 +51,10 @@ The module provides the following classes: .. versionchanged:: 3.2 *source_address* was added. + .. versionchanged:: 3.4 + The *strict* parameter is removed. HTTP 0.9-style "Simple Responses" are + not supported. + .. class:: HTTPSConnection(host, port=None, key_file=None, \ cert_file=None[, timeout], \ @@ -85,12 +89,20 @@ The module provides the following classes: This class now supports HTTPS virtual hosts if possible (that is, if :data:`ssl.HAS_SNI` is true). + .. versionchanged:: 3.4 + The *strict* parameter is removed. HTTP 0.9-style "Simple Responses" are + not supported anymore. + .. class:: HTTPResponse(sock, debuglevel=0, method=None, url=None) Class whose instances are returned upon successful connection. Not instantiated directly by user. + .. versionchanged:: 3.4 + The *strict* parameter is removed. HTTP 0.9 style "Simple Responses" are + not supported anymore. + The following exceptions are raised as appropriate: |