Searched refs:urlunsplit (Results 1 – 5 of 5) sorted by relevance
/third_party/python/Lib/urllib/ |
D | parse.py | 332 return urlunsplit(self) 351 return urlunsplit(self) 503 return _coerce_result(urlunsplit((scheme, netloc, url, query, fragment))) 505 def urlunsplit(components): function
|
/third_party/python/Lib/test/ |
D | test_urlparse.py | 106 result2 = urllib.parse.urlunsplit(result) 227 self.assertEqual(urllib.parse.urlunsplit(urllib.parse.urlsplit(u)), u) 842 urllib.parse.urlunsplit((b"http", "www.python.org","","","")) 844 urllib.parse.urlunsplit(("http", b"www.python.org","","",""))
|
/third_party/python/Lib/http/ |
D | server.py | 690 new_url = urllib.parse.urlunsplit(new_parts)
|
/third_party/python/Doc/library/ |
D | urllib.parse.rst | 342 .. function:: urlunsplit(parts) 377 :func:`urlunsplit`, removing possible *scheme* and *netloc* parts.
|
/third_party/python/Lib/xmlrpc/ |
D | client.py | 1434 self.__handler = urllib.parse.urlunsplit(["", "", *p[2:]])
|