[Python-checkins] r82335 - in python/branches/release26-maint: Doc/library/urllib2.rst

senthil.kumaran python-checkins at python.org
Mon Jun 28 19:11:32 CEST 2010


Author: senthil.kumaran
Date: Mon Jun 28 19:11:32 2010
New Revision: 82335

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


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Doc/library/urllib2.rst

Modified: python/branches/release26-maint/Doc/library/urllib2.rst
==============================================================================
--- python/branches/release26-maint/Doc/library/urllib2.rst	(original)
+++ python/branches/release26-maint/Doc/library/urllib2.rst	Mon Jun 28 19:11:32 2010
@@ -43,8 +43,8 @@
    * :meth:`geturl` --- return the URL of the resource retrieved, 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 ``httplib.HTTPMessage`` instance
+   * :meth:`info` --- return the meta-information of the page, such as headers,
+     in the form of an :class:`mimetools.Message` instance
      (see `Quick Reference to HTTP Headers <http://www.cs.tut.fi/~jkorpela/http.html>`_)
 
    Raises :exc:`URLError` on errors.


More information about the Python-checkins mailing list