diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-05-05 07:24:44 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-05-05 07:24:44 (GMT) |
commit | de4bcd92f9eeea07e9157033c785c776384f8a72 (patch) | |
tree | d9e5d3136e79c9facce9ab789de861b206f28c99 /Doc/library | |
parent | ef7a65c3b30c22c4a640fe7d4c8198462b6c1786 (diff) | |
download | cpython-de4bcd92f9eeea07e9157033c785c776384f8a72.zip cpython-de4bcd92f9eeea07e9157033c785c776384f8a72.tar.gz cpython-de4bcd92f9eeea07e9157033c785c776384f8a72.tar.bz2 |
Merged revisions 80775 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r80775 | senthil.kumaran | 2010-05-05 12:52:18 +0530 (Wed, 05 May 2010) | 3 lines
Fix issue8619 - Doc fix - code example.
........
Diffstat (limited to 'Doc/library')
-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 74f0211..03362db 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() |