Commit 7bc5ae2c authored by Senthil Kumaran's avatar Senthil Kumaran

Fix Issue8619 docfix related to urllib.

parent b21aa330
...@@ -133,10 +133,10 @@ The :mod:`urllib.request` module defines the following functions: ...@@ -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 of the :class:`FancyURLopener` class and use it to perform their requested
actions. To override this functionality, programmers can create a subclass of actions. To override this functionality, programmers can create a subclass of
:class:`URLopener` or :class:`FancyURLopener`, then assign an instance of that :class:`URLopener` or :class:`FancyURLopener`, then assign an instance of that
class to the ``urllib._urlopener`` variable before calling the desired function. class to the ``urllib.request._urlopener`` variable before calling the
For example, applications may want to specify a different desired function. For example, applications may want to specify a different
:mailheader:`User-Agent` header than :class:`URLopener` defines. This can be :mailheader:`User-Agent` header than :class:`URLopener` defines.
accomplished with the following code:: This can be accomplished with the following code::
import urllib.request import urllib.request
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment