Home
last modified time | relevance | path

Searched refs:urljoin (Results 1 – 17 of 17) sorted by relevance

/third_party/python/Lib/xml/etree/
DElementInclude.py53 from urllib.parse import urljoin
140 href = urljoin(base_url, href)
/third_party/python/Tools/scripts/
Dgoogle.py21 url = urllib.parse.urljoin('https://www.google.com/search', '?q=' + qstring)
/third_party/skia/tools/skpbench/
Dsheet.py160 fileuri = urlparse.urljoin('file:', urllib.pathname2url(pathname))
/third_party/flutter/skia/tools/skpbench/
Dsheet.py160 fileuri = urlparse.urljoin('file:', urllib.pathname2url(pathname))
/third_party/python/Lib/test/
Dtest_urlparse.py218 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")
Dtest_urllib2.py1263 valid_url = urllib.parse.urljoin(from_url,relative_url)
/third_party/python/Lib/xml/sax/
Dsaxutils.py364 source.setSystemId(urllib.parse.urljoin(base, sysid))
/third_party/python/Doc/library/
Durllib.parse.rst351 .. 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/
Drequest.py104 urlparse, urlsplit, urljoin, unwrap, quote, unquote,
723 newurl = urljoin(req.full_url, newurl)
2181 newurl = urljoin(self.type + ":" + url, newurl)
Dparse.py522 def urljoin(base, url, allow_fragments=True): function
/third_party/python/Misc/NEWS.d/
D3.6.0b2.rst558 Enable WebSocket URL schemes in urllib.parse.urljoin. Patch by Gergely Imreh
D3.5.0a4.rst128 Fix a regression in urljoin() introduced in 901e4e52b20a. Patch by Demian
D3.5.3rc1.rst869 Enable WebSocket URL schemes in urllib.parse.urljoin. Patch by Gergely Imreh
D3.5.0a1.rst2138 Fix urljoin problem with relative urls, a regression observed after changes
D3.7.0a1.rst4551 Enable WebSocket URL schemes in urllib.parse.urljoin. Patch by Gergely Imreh
/third_party/python/Doc/whatsnew/
D3.5.rst2047 The :func:`parse.urljoin() <urllib.parse.urljoin>` was updated to use the
/third_party/python/Misc/
DHISTORY11117 - 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.