Searched refs:quote_from_bytes (Results 1 – 11 of 11) sorted by relevance
/external/libchrome/third_party/jinja2/ |
D | _compat.py | 97 from urllib.parse import quote_from_bytes as url_quote
|
/external/python/jinja/src/jinja2/ |
D | utils.py | 9 from urllib.parse import quote_from_bytes 306 rv = quote_from_bytes(obj, safe)
|
/external/python/cpython3/Lib/urllib/ |
D | parse.py | 853 return quote_from_bytes(string, safe) 872 def quote_from_bytes(bs, safe='/'): function
|
/external/python/cpython3/Lib/test/ |
D | test_urlparse.py | 918 self.assertRaises(TypeError, urllib.parse.quote_from_bytes, 'foo') 919 result = urllib.parse.quote_from_bytes(b'archaeological arcana') 921 result = urllib.parse.quote_from_bytes(b'')
|
D | test_urllib.py | 1015 result = urllib.parse.quote_from_bytes(given)
|
D | test_pathlib.py | 708 from urllib.parse import quote_from_bytes 715 'file:///a/b' + quote_from_bytes(os.fsencode('\xe9')))
|
/external/python/pyfakefs/pyfakefs/ |
D | fake_pathlib.py | 36 from urllib.parse import quote_from_bytes as urlquote_from_bytes
|
/external/python/cpython3/Doc/library/ |
D | urllib.parse.rst | 543 ``quote_from_bytes(string.encode(encoding, errors), safe)``. 558 .. function:: quote_from_bytes(bytes, safe='/') 563 Example: ``quote_from_bytes(b'a&\xef')`` yields
|
/external/python/parse_type/tasks/_vendor/ |
D | pathlib.py | 18 from urllib.parse import quote as urlquote, quote_from_bytes as urlquote_from_bytes
|
/external/python/cpython3/Lib/ |
D | pathlib.py | 13 from urllib.parse import quote_from_bytes as urlquote_from_bytes
|
/external/python/cpython3/Misc/ |
D | HISTORY | 13403 - Issue #1285086: Speed up urllib.parse functions: quote, quote_from_bytes,
|