summaryrefslogtreecommitdiffstats
path: root/Doc/library/http.client.rst
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2010-05-12 01:36:11 (GMT)
committerFred Drake <fdrake@acm.org>2010-05-12 01:36:11 (GMT)
commit1587e3d1e6e8c31766dc43b1bc902506f36fbdc7 (patch)
tree8705037ee73a78b0278972e01b770ea2d524bc75 /Doc/library/http.client.rst
parent340d7d2cc3ea0abc9794fe3e8ba46f87bd3339f7 (diff)
downloadcpython-1587e3d1e6e8c31766dc43b1bc902506f36fbdc7.zip
cpython-1587e3d1e6e8c31766dc43b1bc902506f36fbdc7.tar.gz
cpython-1587e3d1e6e8c31766dc43b1bc902506f36fbdc7.tar.bz2
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 ........
Diffstat (limited to 'Doc/library/http.client.rst')
-rw-r--r--Doc/library/http.client.rst5
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/library/http.client.rst b/Doc/library/http.client.rst
index 17373a7..a29e364 100644
--- a/Doc/library/http.client.rst
+++ b/Doc/library/http.client.rst
@@ -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")