]> granicus.if.org Git - python/commitdiff
Merged revisions 81087,81106 via svnmerge from
authorFred Drake <fdrake@acm.org>
Wed, 12 May 2010 01:36:11 +0000 (01:36 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 12 May 2010 01:36:11 +0000 (01:36 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81087 | fred.drake | 2010-05-11 14:12:27 -0400 (Tue, 11 May 2010) | 2 lines

  fix typo
........
  r81106 | fred.drake | 2010-05-11 21:22:03 -0400 (Tue, 11 May 2010) | 2 lines

  fix error introduced in previous commit, and the adjacent additional typo
........

Doc/library/http.client.rst

index 17373a76849a36ab86887022ca77ec1c2093657e..a29e3644a554a11b9952386a16aaa9f6ec2f36d9 100644 (file)
@@ -521,9 +521,8 @@ Here is an example session that uses the ``GET`` method::
    >>> data2 = r2.read()
    >>> conn.close()
 
-Here is an example session that uses ``HEAD`` method. Note that ``HEAD`` method
-never returns any data. ::
-
+Here is an example session that uses the ``HEAD`` method.  Note that the
+``HEAD`` method never returns any data. ::
 
    >>> import http.client
    >>> conn = http.client.HTTPConnection("www.python.org")