Searched refs:urljoin (Results 1 – 17 of 17) sorted by relevance
/third_party/python/Lib/xml/etree/ |
D | ElementInclude.py | 53 from urllib.parse import urljoin 140 href = urljoin(base_url, href)
|
/third_party/python/Tools/scripts/ |
D | google.py | 21 url = urllib.parse.urljoin('https://www.google.com/search', '?q=' + qstring)
|
/third_party/skia/tools/skpbench/ |
D | sheet.py | 160 fileuri = urlparse.urljoin('file:', urllib.pathname2url(pathname))
|
/third_party/flutter/skia/tools/skpbench/ |
D | sheet.py | 160 fileuri = urlparse.urljoin('file:', urllib.pathname2url(pathname))
|
/third_party/python/Lib/test/ |
D | test_urlparse.py | 218 self.assertEqual(urllib.parse.urljoin(base, relurl), expected) 221 self.assertEqual(urllib.parse.urljoin(baseb, relurlb), expectedb) 864 urllib.parse.urljoin("http://python.org", b"http://python.org") 866 urllib.parse.urljoin(b"http://python.org", "http://python.org")
|
D | test_urllib2.py | 1263 valid_url = urllib.parse.urljoin(from_url,relative_url)
|
/third_party/python/Lib/xml/sax/ |
D | saxutils.py | 364 source.setSystemId(urllib.parse.urljoin(base, sysid))
|
/third_party/python/Doc/library/ |
D | urllib.parse.rst | 351 .. function:: urljoin(base, url, allow_fragments=True) 358 >>> from urllib.parse import urljoin 359 >>> urljoin('http://www.cwi.nl/%7Eguido/Python.html', 'FAQ.html') 372 >>> urljoin('http://www.cwi.nl/%7Eguido/Python.html',
|
/third_party/python/Lib/urllib/ |
D | request.py | 104 urlparse, urlsplit, urljoin, unwrap, quote, unquote, 723 newurl = urljoin(req.full_url, newurl) 2181 newurl = urljoin(self.type + ":" + url, newurl)
|
D | parse.py | 522 def urljoin(base, url, allow_fragments=True): function
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.0b2.rst | 558 Enable WebSocket URL schemes in urllib.parse.urljoin. Patch by Gergely Imreh
|
D | 3.5.0a4.rst | 128 Fix a regression in urljoin() introduced in 901e4e52b20a. Patch by Demian
|
D | 3.5.3rc1.rst | 869 Enable WebSocket URL schemes in urllib.parse.urljoin. Patch by Gergely Imreh
|
D | 3.5.0a1.rst | 2138 Fix urljoin problem with relative urls, a regression observed after changes
|
D | 3.7.0a1.rst | 4551 Enable WebSocket URL schemes in urllib.parse.urljoin. Patch by Gergely Imreh
|
/third_party/python/Doc/whatsnew/ |
D | 3.5.rst | 2047 The :func:`parse.urljoin() <urllib.parse.urljoin>` was updated to use the
|
/third_party/python/Misc/ |
D | HISTORY | 11117 - Issue #9721: Fix the behavior of urljoin when the relative url starts with a 27636 Delete non-standard-conforming code in urljoin() that would use the 29871 - Patch to urlparse.urljoin() for ".." and "..#1", Marc Lemburg.
|