Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit aced69f

Browse files
committed
#17460 - merge from 3.3
2 parents 3ab68a4 + 2f306c0 commit aced69f

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Doc/library/http.client.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ The module provides the following classes:
5151
.. versionchanged:: 3.2
5252
*source_address* was added.
5353

54+
.. versionchanged:: 3.4
55+
The *strict* parameter is removed. HTTP 0.9-style "Simple Responses" are
56+
not supported.
57+
5458

5559
.. class:: HTTPSConnection(host, port=None, key_file=None, \
5660
cert_file=None[, timeout], \
@@ -85,12 +89,20 @@ The module provides the following classes:
8589
This class now supports HTTPS virtual hosts if possible (that is,
8690
if :data:`ssl.HAS_SNI` is true).
8791

92+
.. versionchanged:: 3.4
93+
The *strict* parameter is removed. HTTP 0.9-style "Simple Responses" are
94+
not supported anymore.
95+
8896

8997
.. class:: HTTPResponse(sock, debuglevel=0, method=None, url=None)
9098

9199
Class whose instances are returned upon successful connection. Not
92100
instantiated directly by user.
93101

102+
.. versionchanged:: 3.4
103+
The *strict* parameter is removed. HTTP 0.9 style "Simple Responses" are
104+
not supported anymore.
105+
94106

95107
The following exceptions are raised as appropriate:
96108

0 commit comments

Comments
 (0)