summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2013-09-30 22:12:16 -0700
committerSenthil Kumaran <senthil@uthcode.com>2013-09-30 22:12:16 -0700
commit21b2933456fc3ce2d1594d704671f4fc298ca37c (patch)
treefa37dfa4dee479b45a9162de8cd278f83fee5649
parent3c678c33a770ce7b465163aecb09fba07e1e8daa (diff)
downloadcpython-git-21b2933456fc3ce2d1594d704671f4fc298ca37c.tar.gz
Minor doc fix in urllib.parse.rst
-rw-r--r--Doc/library/urllib.parse.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/urllib.parse.rst b/Doc/library/urllib.parse.rst
index 1ad0ef77ef..dac1cd9ae0 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='',