Fix issue16932: Fix the urlparse example. Remote :port when scheme is not specified to demonstrate correct behavior

This commit is contained in:
Senthil Kumaran 2013-02-26 01:02:14 -08:00
parent d36d4e0d2b
commit b1bbc0b3dc
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ The :mod:`urlparse` module defines the following functions:
>>> urlparse('//www.cwi.nl:80/%7Eguido/Python.html')
ParseResult(scheme='', netloc='www.cwi.nl:80', path='/%7Eguido/Python.html',
params='', query='', fragment='')
>>> urlparse('www.cwi.nl:80/%7Eguido/Python.html')
>>> urlparse('www.cwi.nl/%7Eguido/Python.html')
ParseResult(scheme='', netloc='', path='www.cwi.nl:80/%7Eguido/Python.html',
params='', query='', fragment='')
>>> urlparse('help/Python.html')