diff options
author | Georg Brandl <georg@python.org> | 2009-03-31 22:18:19 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-03-31 22:18:19 (GMT) |
commit | b7715865e77a7516859710122b07bd0963936209 (patch) | |
tree | 7a8d88a949047ffa6e87e80434f922858f75808a | |
parent | 0c7b2c9c191a97b4aede17c15e2b5013e7edcfb5 (diff) | |
download | cpython-b7715865e77a7516859710122b07bd0963936209.zip cpython-b7715865e77a7516859710122b07bd0963936209.tar.gz cpython-b7715865e77a7516859710122b07bd0963936209.tar.bz2 |
#3427: document correct return type for urlopen().info().
-rw-r--r-- | Doc/library/urllib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/urllib.rst b/Doc/library/urllib.rst index 1d02b1c..905c324 100644 --- a/Doc/library/urllib.rst +++ b/Doc/library/urllib.rst @@ -49,7 +49,7 @@ High-level interface .. 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 |