[Python-checkins] r81107 - in python/branches/py3k: Doc/library/http.client.rst

fred.drake python-checkins at python.org
Wed May 12 03:36:11 CEST 2010


Author: fred.drake
Date: Wed May 12 03:36:11 2010
New Revision: 81107

Log:
Merged revisions 81087,81106 via svnmerge from 
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
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Doc/library/http.client.rst

Modified: python/branches/py3k/Doc/library/http.client.rst
==============================================================================
--- python/branches/py3k/Doc/library/http.client.rst	(original)
+++ python/branches/py3k/Doc/library/http.client.rst	Wed May 12 03:36:11 2010
@@ -521,9 +521,8 @@
    >>> 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")


More information about the Python-checkins mailing list