Searched refs:allow_fragments (Results 1 – 3 of 3) sorted by relevance
/third_party/python/Lib/urllib/ |
D | parse.py | 372 def urlparse(url, scheme='', allow_fragments=True): argument 393 splitresult = urlsplit(url, scheme, allow_fragments) 437 def urlsplit(url, scheme='', allow_fragments=True): argument 464 allow_fragments = bool(allow_fragments) 465 key = url, scheme, allow_fragments, type(url), type(scheme) 485 if allow_fragments and '#' in url: 524 def urljoin(base, url, allow_fragments=True): argument 534 urlparse(base, '', allow_fragments) 536 urlparse(url, bscheme, allow_fragments)
|
/third_party/python/Doc/library/ |
D | urllib.parse.rst | 40 .. function:: urlparse(urlstring, scheme='', allow_fragments=True) 99 If the *allow_fragments* argument is false, fragment identifiers are not 277 .. function:: urlsplit(urlstring, scheme='', allow_fragments=True) 351 .. function:: urljoin(base, url, allow_fragments=True) 362 The *allow_fragments* argument has the same meaning and default as for
|
/third_party/python/Lib/test/ |
D | test_urlparse.py | 812 result = func(url, allow_fragments=False) 818 result = func(url, allow_fragments=True)
|