]> granicus.if.org Git - python/commitdiff
#17460 - merge from 3.3
authorSenthil Kumaran <senthil@uthcode.com>
Tue, 19 Mar 2013 08:22:56 +0000 (01:22 -0700)
committerSenthil Kumaran <senthil@uthcode.com>
Tue, 19 Mar 2013 08:22:56 +0000 (01:22 -0700)
1  2 
Doc/library/http.client.rst

index c4c76172b4c4f21b42cfb1c7b685592295c5a538,8137573aa8b1f7be6acfd24c75a5e2e645e36777..0fad566da8ef5720fd407c08f80743ccffd03ff6
@@@ -51,9 -51,13 +51,13 @@@ The module provides the following class
     .. versionchanged:: 3.2
        *source_address* was added.
  
 -   .. deprecated-removed:: 3.2 3.4
 -      The *strict* parameter is deprecated.  HTTP 0.9-style "Simple Responses"
 -      are not supported anymore.
++   .. 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[, strict][, timeout], \
 +                           cert_file=None[, timeout], \
                             source_address=None, *, context=None, \
                             check_hostname=None)
  
        This class now supports HTTPS virtual hosts if possible (that is,
        if :data:`ssl.HAS_SNI` is true).
  
 -   .. deprecated-removed:: 3.2 3.4
 -      The *strict* parameter is deprecated.  HTTP 0.9-style "Simple Responses"
 -      are not supported anymore.
++   .. versionchanged:: 3.4
++      The *strict* parameter is removed. HTTP 0.9-style "Simple Responses" are
++      not supported anymore.
  
 -.. class:: HTTPResponse(sock, debuglevel=0[, strict], method=None, url=None)
 +.. class:: HTTPResponse(sock, debuglevel=0, method=None, url=None)
  
     Class whose instances are returned upon successful connection.  Not
     instantiated directly by user.
  
 -   .. deprecated-removed:: 3.2 3.4
 -      The *strict* parameter is deprecated.  HTTP 0.9-style "Simple Responses"
 -      are not supported anymore.
++   .. 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: