From: Fred Drake Date: Wed, 12 May 2010 01:22:03 +0000 (+0000) Subject: fix error introduced in previous commit, and the adjacent additional typo X-Git-Tag: v2.7rc1~170 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5840469067854f93ce1b22e9e85866e5a460b472;p=python fix error introduced in previous commit, and the adjacent additional typo --- diff --git a/Doc/library/httplib.rst b/Doc/library/httplib.rst index e54afd970d..f7d9328a76 100644 --- a/Doc/library/httplib.rst +++ b/Doc/library/httplib.rst @@ -560,9 +560,8 @@ Here is an example session that uses the ``GET`` method:: >>> data2 = r2.read() >>> conn.close() -Here is an example session that uses the ``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 httplib >>> conn = httplib.HTTPConnection("www.python.org")