]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merged revisions 82334 via svnmerge from
authorSenthil Kumaran <orsenthil@gmail.com>
Mon, 28 Jun 2010 17:31:40 +0000 (17:31 +0000)
committerSenthil Kumaran <orsenthil@gmail.com>
Mon, 28 Jun 2010 17:31:40 +0000 (17:31 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r82334 | senthil.kumaran | 2010-06-28 22:37:40 +0530 (Mon, 28 Jun 2010) | 3 lines

  Documentation correction. urllib2.urlopen.info returns a mimetools.Message instance not HTTPMessage object.
........

Doc/library/urllib.request.rst

index 2c48146858cf701c975f6ce9085f1c87fe5d07c6..a13025046fad7fde2769689c37b1a9da0003f5b3 100644 (file)
@@ -40,8 +40,8 @@ The :mod:`urllib.request` module defines the following functions:
      commonly used to determine if a redirect was followed
 
    * :meth:`info` --- return the meta-information of the page, such as headers,
-     in the form of an :class:`http.client.HTTPMessage` instance (see `Quick
-     Reference to HTTP Headers <http://www.cs.tut.fi/~jkorpela/http.html>`_)
+     in the form of an :func:`email.message_from_string` instance (see
+     `Quick Reference to HTTP Headers <http://www.cs.tut.fi/~jkorpela/http.html>`_)
 
    Raises :exc:`URLError` on errors.