summaryrefslogtreecommitdiffstats
path: root/Lib/urlparse.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/urlparse.py')
-rw-r--r--Lib/urlparse.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/urlparse.py b/Lib/urlparse.py
index c56d883..c41e25e 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)