diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2013-02-08 05:44:42 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2013-02-08 05:44:42 (GMT) |
commit | cf6e21ccef5769d6a73a1ebec1ab8e5146ad3def (patch) | |
tree | 12dc5476e608712bcb4800041ff951728630c7cf /Doc/library/urllib.request.rst | |
parent | bbbac2ec34e99c24d7bc0eedbcc138c5f4551d48 (diff) | |
parent | d03f467dc218e7b1d9125343ef9908b08fe7b91a (diff) | |
download | cpython-cf6e21ccef5769d6a73a1ebec1ab8e5146ad3def.zip cpython-cf6e21ccef5769d6a73a1ebec1ab8e5146ad3def.tar.gz cpython-cf6e21ccef5769d6a73a1ebec1ab8e5146ad3def.tar.bz2 |
Addressing the review comment made by Terry Reedy
Diffstat (limited to 'Doc/library/urllib.request.rst')
-rw-r--r-- | Doc/library/urllib.request.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst index f7bd2cd..505f738 100644 --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -67,9 +67,9 @@ The :mod:`urllib.request` module defines the following functions: :class:`http.client.HTTPResponse` object which has the following :ref:`httpresponse-objects` methods. - For ftp, file, data urls and requests are explicity handled by legacy - :class:`URLopener` and :class:`FancyURLopener` class, this function returns - an :class:`urllib.response.addinfourl` object which can work as + For ftp, file, and data urls and requests explicity handled by legacy + :class:`URLopener` and :class:`FancyURLopener` classes, this function + returns a :class:`urllib.response.addinfourl` object which can work as :term:`context manager` and has methods such as * :meth:`~urllib.response.addinfourl.geturl` --- return the URL of the resource retrieved, |