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

georg.brandl python-checkins at python.org
Wed Apr 1 00:18:20 CEST 2009


Author: georg.brandl
Date: Wed Apr  1 00:18:19 2009
New Revision: 70907

Log:
#3427: document correct return type for urlopen().info().

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	Wed Apr  1 00:18:19 2009
@@ -49,7 +49,7 @@
    .. index:: module: mimetools
 
    The :meth:`info` method returns an instance of the class
-   :class:`mimetools.Message` containing meta-information associated with the
+   :class:`httplib.HTTPMessage` 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