[Python-checkins] r82363 - python/trunk/Doc/library/urllib.rst

senthil.kumaran python-checkins at python.org
Tue Jun 29 15:28:20 CEST 2010


Author: senthil.kumaran
Date: Tue Jun 29 15:28:20 2010
New Revision: 82363

Log:
Documentation Fix: urllib.urlopen.info uses mimetools.Message, not httplib.HTTPMessage.



Modified:
   python/trunk/Doc/library/urllib.rst

Modified: python/trunk/Doc/library/urllib.rst
==============================================================================
--- python/trunk/Doc/library/urllib.rst	(original)
+++ python/trunk/Doc/library/urllib.rst	Tue Jun 29 15:28:20 2010
@@ -49,7 +49,7 @@
    .. index:: module: mimetools
 
    The :meth:`info` method returns an instance of the class
-   :class:`httplib.HTTPMessage` containing meta-information associated with the
+   :class:`mimetools.Message` containing meta-information associated with the
    URL.  When the method is HTTP, these headers are those returned by the server
    at the head of the retrieved HTML page (including Content-Length and
    Content-Type).  When the method is FTP, a Content-Length header will be


More information about the Python-checkins mailing list