]> granicus.if.org Git - python/commitdiff
Merged revisions 80773 via svnmerge from
authorSenthil Kumaran <orsenthil@gmail.com>
Wed, 5 May 2010 05:34:35 +0000 (05:34 +0000)
committerSenthil Kumaran <orsenthil@gmail.com>
Wed, 5 May 2010 05:34:35 +0000 (05:34 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r80773 | senthil.kumaran | 2010-05-05 11:02:16 +0530 (Wed, 05 May 2010) | 3 lines

  Fix Issue8619 docfix related to urllib.
........

Doc/library/urllib.request.rst

index 8928882c328633ad77202bee308c01974f8fcf3b..74f0211dca0ec8026660be9ebe47c79f72cdc35f 100644 (file)
@@ -133,10 +133,10 @@ The :mod:`urllib.request` module defines the following functions:
    of the :class:`FancyURLopener` class and use it to perform their requested
    actions.  To override this functionality, programmers can create a subclass of
    :class:`URLopener` or :class:`FancyURLopener`, then assign an instance of that
-   class to the ``urllib._urlopener`` variable before calling the desired function.
-   For example, applications may want to specify a different
-   :mailheader:`User-Agent` header than :class:`URLopener` defines.  This can be
-   accomplished with the following code::
+   class to the ``urllib.request._urlopener`` variable before calling the
+   desired function.  For example, applications may want to specify a different
+   :mailheader:`User-Agent` header than :class:`URLopener` defines.
+   This can be accomplished with the following code::
 
       import urllib.request