diff --git a/Doc/library/httplib.rst b/Doc/library/httplib.rst index e54afd970df537fec9556c88c8c1931ca3c21270..f7d9328a76bc4a9acd10d27039768398a2cc4fe1 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")