Home
last modified time | relevance | path

Searched refs:quote_from_bytes (Results 1 – 12 of 12) sorted by relevance

/third_party/node/tools/inspector_protocol/jinja2/
D_compat.py97 from urllib.parse import quote_from_bytes as url_quote
/third_party/node/deps/v8/third_party/jinja2/
D_compat.py105 from urllib.parse import quote_from_bytes as url_quote
/third_party/jinja2/
D_compat.py105 from urllib.parse import quote_from_bytes as url_quote
Dutils.py12 from urllib.parse import quote_from_bytes
412 rv = quote_from_bytes(obj, safe)
/third_party/skia/third_party/externals/jinja2/
D_compat.py105 from urllib.parse import quote_from_bytes as url_quote
/third_party/python/Lib/urllib/
Dparse.py868 return quote_from_bytes(string, safe)
887 def quote_from_bytes(bs, safe='/'): function
/third_party/python/Lib/test/
Dtest_urlparse.py1001 self.assertRaises(TypeError, urllib.parse.quote_from_bytes, 'foo')
1002 result = urllib.parse.quote_from_bytes(b'archaeological arcana')
1004 result = urllib.parse.quote_from_bytes(b'')
Dtest_urllib.py1017 result = urllib.parse.quote_from_bytes(given)
Dtest_pathlib.py724 from urllib.parse import quote_from_bytes
731 'file:///a/b' + quote_from_bytes(os.fsencode('\xe9')))
/third_party/python/Doc/library/
Durllib.parse.rst579 ``quote_from_bytes(string.encode(encoding, errors), safe)``.
594 .. function:: quote_from_bytes(bytes, safe='/')
599 Example: ``quote_from_bytes(b'a&\xef')`` yields
/third_party/python/Lib/
Dpathlib.py14 from urllib.parse import quote_from_bytes as urlquote_from_bytes
/third_party/python/Misc/
DHISTORY13403 - Issue #1285086: Speed up urllib.parse functions: quote, quote_from_bytes,