From d03f467dc218e7b1d9125343ef9908b08fe7b91a Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Thu, 7 Feb 2013 21:43:21 -0800 Subject: [PATCH] Addressing the review comment made by Terry Reedy --- Doc/library/urllib.request.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst index ff5dd62f7ac..33244daf6ec 100644 --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -61,9 +61,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,