Home
last modified time | relevance | path

Searched refs:unquote_to_bytes (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Lib/test/
Dtest_urllib.py1130 result = urllib.parse.unquote_to_bytes(given)
1135 result = urllib.parse.unquote_to_bytes(given)
1140 result = urllib.parse.unquote_to_bytes(given)
1143 self.assertRaises((TypeError, AttributeError), urllib.parse.unquote_to_bytes, None)
1144 self.assertRaises((TypeError, AttributeError), urllib.parse.unquote_to_bytes, ())
1150 result = urllib.parse.unquote_to_bytes(given)
1182 result = urllib.parse.unquote_to_bytes(given)
1189 result = urllib.parse.unquote_to_bytes("\u6f22%C3%BC")
1197 result = urllib.parse.unquote_to_bytes(given)
1205 result = urllib.parse.unquote_to_bytes(given)
Dtest_urlparse.py990 result = urllib.parse.unquote_to_bytes('abc%20def')
992 result = urllib.parse.unquote_to_bytes('')
/third_party/python/Lib/urllib/
Dparse.py612 def unquote_to_bytes(string): function
655 return unquote_to_bytes(string).decode(encoding, errors)
667 append(unquote_to_bytes(bits[i]).decode(encoding, errors))
Drequest.py107 unquote_to_bytes, urlunparse)
1659 data = unquote_to_bytes(data)
/third_party/python/Doc/library/
Durllib.parse.rst634 .. function:: unquote_to_bytes(string)
644 Example: ``unquote_to_bytes('a%26%EF')`` yields ``b'a&\xef'``.
/third_party/python/Lib/xmlrpc/
Dclient.py1232 auth = urllib.parse.unquote_to_bytes(auth)
/third_party/python/Lib/email/
D_header_value_parser.py775 value = urllib.parse.unquote_to_bytes(value)
/third_party/python/Misc/NEWS.d/
D3.5.0a1.rst4332 unquote_to_bytes() table of the urllib.parse module, to not waste memory if
/third_party/python/Misc/
DHISTORY2030 initialization of the unquote_to_bytes() table of the urllib.parse module, to
5247 urllib.parse.unquote() and urllib.parse.unquote_to_bytes().
13404 unquote, unquote_to_bytes.