diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2013-10-01 05:10:44 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2013-10-01 05:10:44 (GMT) |
commit | 34f7c4ee806bfbbe4a6fe8bced6b46608cd706b2 (patch) | |
tree | a5fa331ea0bbdd83b3c50548c8115f5dcf912474 | |
parent | 5e0fae964bbdeae187df915f5d4db6badfd227cd (diff) | |
download | cpython-34f7c4ee806bfbbe4a6fe8bced6b46608cd706b2.zip cpython-34f7c4ee806bfbbe4a6fe8bced6b46608cd706b2.tar.gz cpython-34f7c4ee806bfbbe4a6fe8bced6b46608cd706b2.tar.bz2 |
Minor doc fix in urlparse.rst
-rw-r--r-- | Doc/library/urlparse.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/urlparse.rst b/Doc/library/urlparse.rst index efd112d..1bc361d 100644 --- a/Doc/library/urlparse.rst +++ b/Doc/library/urlparse.rst @@ -72,7 +72,7 @@ The :mod:`urlparse` module defines the following functions: ParseResult(scheme='', netloc='www.cwi.nl:80', path='/%7Eguido/Python.html', params='', query='', fragment='') >>> urlparse('www.cwi.nl/%7Eguido/Python.html') - ParseResult(scheme='', netloc='', path='www.cwi.nl:80/%7Eguido/Python.html', + ParseResult(scheme='', netloc='', path='www.cwi.nl/%7Eguido/Python.html', params='', query='', fragment='') >>> urlparse('help/Python.html') ParseResult(scheme='', netloc='', path='help/Python.html', params='', |