Searched refs:urlsplit (Results 1 - 7 of 7) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test_urlparse.py | 100 # check the roundtrip using urlsplit() as well 101 result = urllib.parse.urlsplit(url) 111 result3 = urllib.parse.urlsplit(result.geturl()) 179 # urllib.parse.urlsplit treats 'http:' as an optimized special case, 227 self.assertEqual(urllib.parse.urlunsplit(urllib.parse.urlsplit(u)), u) 514 p = urllib.parse.urlsplit('http://[FE80::822a:a8ff:fe49:470c%tESt]:1234') 518 p = urllib.parse.urlsplit(b'http://[FE80::822a:a8ff:fe49:470c%tESt]:1234') 524 p = urllib.parse.urlsplit(url) 540 p = urllib.parse.urlsplit(url) 557 p = urllib.parse.urlsplit(ur [all...] |
/third_party/python/Lib/urllib/ |
H A D | parse.py | 43 "urlsplit", "urlunsplit", "urlencode", "parse_qs", 51 # being the default value returned by “urlsplit” and “urlparse”. 96 urlsplit.cache_clear() 395 splitresult = urlsplit(url, scheme, allow_fragments) 453 def urlsplit(url, scheme='', allow_fragments=True): function 521 """Combine the elements of a tuple as returned by urlsplit() into a
|
H A D | request.py | 104 urlparse, urlsplit, urljoin, unwrap, quote, unquote, 863 parts = urlsplit(uri)
|
/third_party/python/Lib/http/ |
H A D | client.py | 80 from urllib.parse import urlsplit namespace 1157 nil, netloc, nil, nil, nil = urlsplit(url)
|
H A D | server.py | 702 parts = urllib.parse.urlsplit(self.path)
|
H A D | cookiejar.py | 650 parts = urllib.parse.urlsplit(url)
|
/third_party/python/Lib/xmlrpc/ |
H A D | client.py | 1430 p = urllib.parse.urlsplit(uri)
|
Completed in 14 milliseconds