Searched refs:unquote_to_bytes (Results 1 – 9 of 9) sorted by relevance
/third_party/python/Lib/test/ |
D | test_urllib.py | 1130 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)
|
D | test_urlparse.py | 990 result = urllib.parse.unquote_to_bytes('abc%20def') 992 result = urllib.parse.unquote_to_bytes('')
|
/third_party/python/Lib/urllib/ |
D | parse.py | 612 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))
|
D | request.py | 107 unquote_to_bytes, urlunparse) 1659 data = unquote_to_bytes(data)
|
/third_party/python/Doc/library/ |
D | urllib.parse.rst | 634 .. function:: unquote_to_bytes(string) 644 Example: ``unquote_to_bytes('a%26%EF')`` yields ``b'a&\xef'``.
|
/third_party/python/Lib/xmlrpc/ |
D | client.py | 1232 auth = urllib.parse.unquote_to_bytes(auth)
|
/third_party/python/Lib/email/ |
D | _header_value_parser.py | 775 value = urllib.parse.unquote_to_bytes(value)
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.0a1.rst | 4332 unquote_to_bytes() table of the urllib.parse module, to not waste memory if
|
/third_party/python/Misc/ |
D | HISTORY | 2030 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.
|