[Python-checkins] cpython (merge 3.3 -> default): #17460 - merge from 3.3

senthil.kumaran python-checkins at python.org
Tue Mar 19 09:20:06 CET 2013


http://hg.python.org/cpython/rev/2a1b4ac63f3a
changeset:   82757:2a1b4ac63f3a
parent:      82754:145d78bc00f8
parent:      82756:f4e966570416
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Tue Mar 19 01:22:56 2013 -0700
summary:
  #17460 - merge from 3.3

files:
  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
--- a/Doc/library/http.client.rst
+++ b/Doc/library/http.client.rst
@@ -51,6 +51,10 @@
    .. 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 @@
       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:
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list