diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2013-10-01 05:12:16 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2013-10-01 05:12:16 (GMT) |
commit | 21b2933456fc3ce2d1594d704671f4fc298ca37c (patch) | |
tree | fa37dfa4dee479b45a9162de8cd278f83fee5649 | |
parent | 3c678c33a770ce7b465163aecb09fba07e1e8daa (diff) | |
download | cpython-21b2933456fc3ce2d1594d704671f4fc298ca37c.zip cpython-21b2933456fc3ce2d1594d704671f4fc298ca37c.tar.gz cpython-21b2933456fc3ce2d1594d704671f4fc298ca37c.tar.bz2 |
Minor doc fix in urllib.parse.rst
-rw-r--r-- | Doc/library/urllib.parse.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/urllib.parse.rst b/Doc/library/urllib.parse.rst index 1ad0ef7..dac1cd9 100644 --- a/Doc/library/urllib.parse.rst +++ b/Doc/library/urllib.parse.rst @@ -70,7 +70,7 @@ or on combining URL components into a URL string. 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='', |