diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-02-19 07:32:48 +0000 |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-02-19 07:32:48 +0000 |
commit | 4e78de89d0df77a2bea965eb838f0d37932c34d6 (patch) | |
tree | 3ef1811e7fe6a6959708fcd5f14666eb9bfaf679 /Lib/urlparse.py | |
parent | cc43b56960b46734e0d0e19521376d5fdb6af587 (diff) | |
download | cpython-git-4e78de89d0df77a2bea965eb838f0d37932c34d6.tar.gz |
Fix for Issue7904. urlparse.urlsplit to handle schemes in the way defined by RFC3986
Diffstat (limited to 'Lib/urlparse.py')
-rw-r--r-- | Lib/urlparse.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/urlparse.py b/Lib/urlparse.py index 5e5d37d132..1d065d3986 100644 --- a/Lib/urlparse.py +++ b/Lib/urlparse.py @@ -163,7 +163,8 @@ def urlsplit(url, scheme='', allow_fragments=True): break else: scheme, url = url[:i].lower(), url[i+1:] - if scheme in uses_netloc and url[:2] == '//': + + if url[:2] == '//': netloc, url = _splitnetloc(url, 2) if allow_fragments and scheme in uses_fragment and '#' in url: url, fragment = url.split('#', 1) |