Commit 4db646b1 authored by Guido van Rossum's avatar Guido van Rossum

spliturl() should not throw away everything past first newline

parent a257627f
......@@ -629,9 +629,11 @@ def unwrap(url):
if url[:4] == 'URL:': url = string.strip(url[4:])
return url
_typeprog = regex.compile('^\([^/:]+\):\(.*\)$')
_typeprog = regex.compile('^\([^/:]+\):')
def splittype(url):
if _typeprog.match(url) >= 0: return _typeprog.group(1, 2)
if _typeprog.match(url) >= 0:
scheme = _typeprog.group(1)
return scheme, url[len(scheme) + 1:]
return None, url
_hostprog = regex.compile('^//\([^/]+\)\(.*\)$')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment