diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-06-29 13:28:20 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-06-29 13:28:20 (GMT) |
commit | 1c919a64ed805137ae8eae07800b53d7befa161e (patch) | |
tree | 5c814670964a3355ff4422fa71eb0ae65852eeb9 /Doc/library | |
parent | 858624944c1d7809e0f9f9564e051b2e4dcef670 (diff) | |
download | cpython-1c919a64ed805137ae8eae07800b53d7befa161e.zip cpython-1c919a64ed805137ae8eae07800b53d7befa161e.tar.gz cpython-1c919a64ed805137ae8eae07800b53d7befa161e.tar.bz2 |
Documentation Fix: urllib.urlopen.info uses mimetools.Message, not httplib.HTTPMessage.
Diffstat (limited to 'Doc/library')
-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 a11677b..5621f51 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:`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 |