Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_urllib.py994 result = urllib.parse.unquote_to_bytes(given)
999 result = urllib.parse.unquote_to_bytes(given)
1004 result = urllib.parse.unquote_to_bytes(given)
1007 self.assertRaises((TypeError, AttributeError), urllib.parse.unquote_to_bytes, None)
1008 self.assertRaises((TypeError, AttributeError), urllib.parse.unquote_to_bytes, ())
1014 result = urllib.parse.unquote_to_bytes(given)
1046 result = urllib.parse.unquote_to_bytes(given)
1053 result = urllib.parse.unquote_to_bytes("\u6f22%C3%BC")
1061 result = urllib.parse.unquote_to_bytes(given)
1069 result = urllib.parse.unquote_to_bytes(given)
Dtest_urlparse.py923 result = urllib.parse.unquote_to_bytes('abc%20def')
925 result = urllib.parse.unquote_to_bytes('')
/external/python/cpython3/Lib/urllib/
Dparse.py584 def unquote_to_bytes(string): function
637 append(unquote_to_bytes(bits[i]).decode(encoding, errors))
Drequest.py107 unquote_to_bytes, urlunparse)
1627 data = unquote_to_bytes(data)
/external/python/six/
DCHANGES18 - Pull request #172 and issue #171: Add unquote_to_bytes to moved urllib.parse.
/external/python/cpython3/Doc/library/
Durllib.parse.rst563 .. function:: unquote_to_bytes(string)
573 Example: ``unquote_to_bytes('a%26%EF')`` yields ``b'a&\xef'``.
/external/python/cpython3/Lib/xmlrpc/
Dclient.py1220 auth = urllib.parse.unquote_to_bytes(auth)
/external/python/six/documentation/
Dindex.rst725 * :func:`py2:urllib.unquote` (also exposed as :func:`py3:urllib.parse.unquote_to_bytes`)
/external/python/cpython3/Lib/email/
D_header_value_parser.py765 value = urllib.parse.unquote_to_bytes(value)
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst4332 unquote_to_bytes() table of the urllib.parse module, to not waste memory if
/external/python/cpython3/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.