Searched refs:parse_qsl (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Lib/test/ |
D | test_urlparse.py | 126 result = urllib.parse.parse_qsl(orig, keep_blank_values=True) 129 result = urllib.parse.parse_qsl(orig, keep_blank_values=False) 917 result = urllib.parse.parse_qsl("key=\u0141%E9", encoding="latin-1") 919 result = urllib.parse.parse_qsl("key=\u0141%C3%A9", encoding="utf-8") 921 result = urllib.parse.parse_qsl("key=\u0141%C3%A9", encoding="ascii") 923 result = urllib.parse.parse_qsl("key=\u0141%E9-", encoding="ascii") 925 result = urllib.parse.parse_qsl("key=\u0141%E9-", encoding="ascii", 970 result = urllib.parse.parse_qsl(orig, separator=';') 972 result_bytes = urllib.parse.parse_qsl(orig, separator=b';')
|
/third_party/python/Lib/ |
D | cgi.py | 597 query = urllib.parse.parse_qsl( 613 query = urllib.parse.parse_qsl(
|
/third_party/python/Lib/urllib/ |
D | parse.py | 701 pairs = parse_qsl(qs, keep_blank_values, strict_parsing, 712 def parse_qsl(qs, keep_blank_values=False, strict_parsing=False, function
|
/third_party/python/Doc/library/ |
D | urllib.parse.rst | 225 .. function:: parse_qsl(qs, keep_blank_values=False, strict_parsing=False, encoding='utf-8', errors… 679 To reverse this encoding process, :func:`parse_qs` and :func:`parse_qsl` are
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0b1.rst | 519 :func:`urllib.parse.parse_qsl`. Patch by Christoph Zwerschke and Dong-hee 1102 ``urllib.parse.parse_qsl`` when parsing :class:`str` query strings.
|
D | 3.8.0a1.rst | 4182 Remove deprecated ``cgi.escape``, ``cgi.parse_qs`` and ``cgi.parse_qsl``.
|
/third_party/python/Doc/whatsnew/ |
D | 3.8.rst | 1772 * ``parse_qs``, ``parse_qsl``, and ``escape`` are removed from the :mod:`cgi` 2244 :func:`urllib.parse.parse_qsl`. Due to security concerns, and to conform with
|
D | 3.9.rst | 1544 :func:`urllib.parse.parse_qsl`. Due to security concerns, and to conform with
|
D | 3.10.rst | 1478 :func:`urllib.parse.parse_qsl`. Due to security concerns, and to conform with
|
D | 3.6.rst | 2452 :func:`urllib.parse.parse_qsl`. Due to security concerns, and to conform with
|
D | 3.7.rst | 2566 :func:`urllib.parse.parse_qsl`. Due to security concerns, and to conform with
|
D | 2.6.rst | 1814 The :func:`parse_qs` and :func:`parse_qsl` functions have been
|
/third_party/python/Misc/ |
D | HISTORY | 10847 - Add encoding and errors arguments to urllib.parse_qs() and urllib.parse_qsl(). 16371 - Issue #600362: Relocated parse_qs() and parse_qsl(), from the cgi module 20292 - Bug #990307: when keep_empty_values is True, cgi.parse_qsl()
|