diff -r 41c918897286 Doc/library/urllib.parse.rst --- a/Doc/library/urllib.parse.rst Fri Jun 03 19:27:16 2011 +0200 +++ b/Doc/library/urllib.parse.rst Fri Jun 03 15:29:59 2011 -0400 @@ -61,7 +61,7 @@ input is presumed to be a relative URL and thus to start with a path component. - >>> from urlparse import urlparse + >>> from urllib.parse import urlparse >>> urlparse('//www.cwi.nl:80/%7Eguido/Python.html') ParseResult(scheme='', netloc='www.cwi.nl:80', path='/%7Eguido/Python.html', params='', query='', fragment='') @@ -537,10 +537,11 @@ .. seealso:: :rfc:`3986` - Uniform Resource Identifiers - This is the current standard (STD66). Any changes to urlparse module - should conform to this. Certain deviations could be observed, which are - mostly for backward compatibility purposes and for certain de-facto - parsing requirements as commonly observed in major browsers. + This is the current standard (STD66). Any changes to the + urllib.parse module should conform to this. Certain deviations + could be observed, which are mostly for backward compatibility + purposes and for certain de-facto parsing requirements as + commonly observed in major browsers. :rfc:`2732` - Format for Literal IPv6 Addresses in URL's. This specifies the parsing requirements of IPv6 URLs.