Commit 99aa7072 authored by Senthil Kumaran's avatar Senthil Kumaran

Minor doc fix in urllib.parse.rst

parent 8969b8de
...@@ -70,7 +70,7 @@ or on combining URL components into a URL string. ...@@ -70,7 +70,7 @@ or on combining URL components into a URL string.
ParseResult(scheme='', netloc='www.cwi.nl:80', path='/%7Eguido/Python.html', ParseResult(scheme='', netloc='www.cwi.nl:80', path='/%7Eguido/Python.html',
params='', query='', fragment='') params='', query='', fragment='')
>>> urlparse('www.cwi.nl/%7Eguido/Python.html') >>> 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='') params='', query='', fragment='')
>>> urlparse('help/Python.html') >>> urlparse('help/Python.html')
ParseResult(scheme='', netloc='', path='help/Python.html', params='', ParseResult(scheme='', netloc='', path='help/Python.html', params='',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment