cpython: a7b7ba225de7 (original) (raw)

Mercurial > cpython

changeset 72693:a7b7ba225de7

merge from 3.2. Issue #13073 - Address the review comments made by Ezio. [#13073]

Senthil Kumaran senthil@uthcode.com
date Wed, 05 Oct 2011 23:27:37 +0800
parents c2127d79f7c1(current diff)befa7b926aad(diff)
children a228e59ad693
files Lib/http/client.py
diffstat 2 files changed, 9 insertions(+), 10 deletions(-)[+] [-] Doc/library/http.client.rst 9 Lib/http/client.py 10

line wrap: on

line diff

--- a/Doc/library/http.client.rst +++ b/Doc/library/http.client.rst @@ -475,11 +475,10 @@ also send your request step by step, by .. method:: HTTPConnection.endheaders(message_body=None) Send a blank line to the server, signalling the end of the headers. The

.. method:: HTTPConnection.send(data)

--- a/Lib/http/client.py +++ b/Lib/http/client.py @@ -947,11 +947,11 @@ class HTTPConnection: def endheaders(self, message_body=None): """Indicate that the last header line has been sent to the server.