Home
last modified time | relevance | path

Searched refs:parse_qsl (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Lib/test/
Dtest_urlparse.py126 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/
Dcgi.py597 query = urllib.parse.parse_qsl(
613 query = urllib.parse.parse_qsl(
/third_party/python/Lib/urllib/
Dparse.py701 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/
Durllib.parse.rst225 .. 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/
D3.10.0b1.rst519 :func:`urllib.parse.parse_qsl`. Patch by Christoph Zwerschke and Dong-hee
1102 ``urllib.parse.parse_qsl`` when parsing :class:`str` query strings.
D3.8.0a1.rst4182 Remove deprecated ``cgi.escape``, ``cgi.parse_qs`` and ``cgi.parse_qsl``.
/third_party/python/Doc/whatsnew/
D3.8.rst1772 * ``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
D3.9.rst1544 :func:`urllib.parse.parse_qsl`. Due to security concerns, and to conform with
D3.10.rst1478 :func:`urllib.parse.parse_qsl`. Due to security concerns, and to conform with
D3.6.rst2452 :func:`urllib.parse.parse_qsl`. Due to security concerns, and to conform with
D3.7.rst2566 :func:`urllib.parse.parse_qsl`. Due to security concerns, and to conform with
D2.6.rst1814 The :func:`parse_qs` and :func:`parse_qsl` functions have been
/third_party/python/Misc/
DHISTORY10847 - 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()