mirror of
https://github.com/python/cpython.git
synced 2025-08-30 13:38:43 +00:00
Merged revisions 78234 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78234 | senthil.kumaran | 2010-02-19 13:02:48 +0530 (Fri, 19 Feb 2010) | 2 lines Fix for Issue7904. urlparse.urlsplit to handle schemes in the way defined by RFC3986 ........
This commit is contained in:
parent
03c44a30a3
commit
6be85c52eb
2 changed files with 9 additions and 2 deletions
|
@ -169,7 +169,7 @@ 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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue