From: Senthil Kumaran Date: Tue, 1 Oct 2013 05:12:16 +0000 (-0700) Subject: Minor doc fix in urllib.parse.rst X-Git-Tag: v3.4.0a4~304^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=21b2933456fc3ce2d1594d704671f4fc298ca37c;p=thirdparty%2FPython%2Fcpython.git Minor doc fix in urllib.parse.rst --- diff --git a/Doc/library/urllib.parse.rst b/Doc/library/urllib.parse.rst index 1ad0ef77eff8..dac1cd9ae06e 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='',