]> granicus.if.org Git - python/commitdiff
Merged revisions 86296 via svnmerge from
authorSenthil Kumaran <orsenthil@gmail.com>
Sun, 7 Nov 2010 13:07:14 +0000 (13:07 +0000)
committerSenthil Kumaran <orsenthil@gmail.com>
Sun, 7 Nov 2010 13:07:14 +0000 (13:07 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r86296 | senthil.kumaran | 2010-11-07 20:57:04 +0800 (Sun, 07 Nov 2010) | 3 lines

  Fix Issue10226 - Clarifying the role of the netloc separator.
........

Doc/library/urllib.parse.rst

index 3e1c628296bce817030000e438938661ce3041b0..0ed27ba409ca017be065a31421a48aaeb287fe61 100644 (file)
@@ -48,11 +48,10 @@ The :mod:`urllib.parse` module defines the following functions:
       >>> o.geturl()
       'http://www.cwi.nl:80/%7Eguido/Python.html'
 
-   If the scheme value is not specified, urlparse expects the netloc value to
-   start with '//', following the syntax specifications from :rfc:`1808`.
-   Otherwise, it is not possible to distinguish between netloc and path
-   components, and would the indistinguishable component would be classified
-   as the path as in a relative URL.
+   Following the syntax specifications in :rfc:`1808`, urlparse recognizes
+   a netloc only if it is properly introduced by '//'.  Otherwise the
+   input is presumed to be a relative URL and thus to start with
+   a path component.
 
        >>> from urlparse import urlparse
        >>> urlparse('//www.cwi.nl:80/%7Eguido/Python.html')