summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-02-27 16:46:46 +0000
committerGeorg Brandl <georg@python.org>2009-02-27 16:46:46 +0000
commit2dd0104d36c062cf1530687d0d34f4d7d4349f21 (patch)
tree707c79a0186da7cd391b943bb5c878e0f996ada9 /Doc
parent38e3d51ea734e1c5d6979774977a03773092926a (diff)
downloadcpython-git-2dd0104d36c062cf1530687d0d34f4d7d4349f21.tar.gz
#5357: fix incomprehensible paragraph in urlopen() doc.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/urllib.request.rst22
1 files changed, 11 insertions, 11 deletions
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst
index 60d70f2a10..6a5b3ceae9 100644
--- a/Doc/library/urllib.request.rst
+++ b/Doc/library/urllib.request.rst
@@ -37,20 +37,20 @@ The :mod:`urllib.request` module defines the following functions:
* :meth:`geturl` --- return the URL of the resource retrieved, 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 ``http.client.HTTPMessage`` instance
- (see `Quick Reference to HTTP Headers <http://www.cs.tut.fi/~jkorpela/http.html>`_)
+ * :meth:`info` --- return the meta-information of the page, such as headers,
+ in the form of an ``http.client.HTTPMessage`` instance (see `Quick
+ Reference to HTTP Headers <http://www.cs.tut.fi/~jkorpela/http.html>`_)
Raises :exc:`URLError` on errors.
- Note that ``None`` may be returned if no handler handles the request (though the
- default installed global :class:`OpenerDirector` uses :class:`UnknownHandler` to
- ensure this never happens).
- The urlopen function from the previous version, Python 2.6 and earlier, of
- the module urllib has been discontinued as urlopen can return the
- file-object as the previous. The proxy handling, which in earlier was passed
- as a dict parameter to urlopen can be availed by the use of
- :class:`ProxyHandler` objects.
+ Note that ``None`` may be returned if no handler handles the request (though
+ the default installed global :class:`OpenerDirector` uses
+ :class:`UnknownHandler` to ensure this never happens).
+
+ The legacy ``urllib.urlopen`` function from Python 2.6 and earlier has been
+ discontinued; :func:`urlopen` corresponds to the old ``urllib2.urlopen``.
+ Proxy handling, which was done by passing a dictionary parameter to
+ ``urllib.urlopen``, can be obtained by using :class:`ProxyHandler` objects.
.. function:: install_opener(opener)