summaryrefslogtreecommitdiffstats
path: root/Doc/library/urllib.request.rst
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-06-28 17:31:40 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-06-28 17:31:40 (GMT)
commit13a7eb452940bf02bcd5ac1a15c630d011027b51 (patch)
treeb98db5e8738b2c06f1abb56cdee07e5cca870db1 /Doc/library/urllib.request.rst
parent902d2bd64d85465e5e294cfe9f526f4cd14cf4ee (diff)
downloadcpython-13a7eb452940bf02bcd5ac1a15c630d011027b51.zip
cpython-13a7eb452940bf02bcd5ac1a15c630d011027b51.tar.gz
cpython-13a7eb452940bf02bcd5ac1a15c630d011027b51.tar.bz2
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. ........
Diffstat (limited to 'Doc/library/urllib.request.rst')
-rw-r--r--Doc/library/urllib.request.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst
index 2c48146..a130250 100644
--- a/Doc/library/urllib.request.rst
+++ b/Doc/library/urllib.request.rst
@@ -40,8 +40,8 @@ The :mod:`urllib.request` module defines the following functions:
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 :class:`http.client.HTTPMessage` instance (see `Quick
- Reference to HTTP Headers <http://www.cs.tut.fi/~jkorpela/http.html>`_)
+ in the form of an :func:`email.message_from_string` instance (see
+ `Quick Reference to HTTP Headers <http://www.cs.tut.fi/~jkorpela/http.html>`_)
Raises :exc:`URLError` on errors.