diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2013-10-01 05:12:51 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2013-10-01 05:12:51 (GMT) |
commit | 65870835a006ad613b111fe4579bd7e3354585b7 (patch) | |
tree | 174d866a2c046e65ffa8061b1f2ac28dc5f8fd37 /Doc | |
parent | 6a9c0e50a9d0e09011f59e7eca060473141e8f43 (diff) | |
parent | 21b2933456fc3ce2d1594d704671f4fc298ca37c (diff) | |
download | cpython-65870835a006ad613b111fe4579bd7e3354585b7.zip cpython-65870835a006ad613b111fe4579bd7e3354585b7.tar.gz cpython-65870835a006ad613b111fe4579bd7e3354585b7.tar.bz2 |
merge from 3.3. Minor urllib.parse.rst docs fix.
Diffstat (limited to 'Doc')
-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='', |