diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-05-05 07:22:18 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-05-05 07:22:18 (GMT) |
commit | 56d521cffb9bed0f31fa48f0189c46f60df9b9c5 (patch) | |
tree | f8f8fdc64590f81b96199f9486909bfe47b1d360 /Doc/library/urllib.request.rst | |
parent | 4db26af2805ad1f54c547de342ea5fc2310bcc00 (diff) | |
download | cpython-56d521cffb9bed0f31fa48f0189c46f60df9b9c5.zip cpython-56d521cffb9bed0f31fa48f0189c46f60df9b9c5.tar.gz cpython-56d521cffb9bed0f31fa48f0189c46f60df9b9c5.tar.bz2 |
Fix issue8619 - Doc fix - code example.
Diffstat (limited to 'Doc/library/urllib.request.rst')
-rw-r--r-- | Doc/library/urllib.request.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst index eb3aa33..1e861d4 100644 --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -143,7 +143,7 @@ The :mod:`urllib.request` module defines the following functions: class AppURLopener(urllib.request.FancyURLopener): version = "App/1.7" - urllib._urlopener = AppURLopener() + urllib.request._urlopener = AppURLopener() .. function:: urlcleanup() |