Home
last modified time | relevance | path

Searched refs:parse_qs (Results 1 – 15 of 15) sorted by relevance

/third_party/python/Lib/test/
Dtest_urlparse.py135 result = urllib.parse.parse_qs(orig, keep_blank_values=True)
139 result = urllib.parse.parse_qs(orig, keep_blank_values=False)
886 result = urllib.parse.parse_qs("key=\u0141%E9", encoding="latin-1")
888 result = urllib.parse.parse_qs("key=\u0141%C3%A9", encoding="utf-8")
890 result = urllib.parse.parse_qs("key=\u0141%C3%A9", encoding="ascii")
892 result = urllib.parse.parse_qs("key=\u0141%E9-", encoding="ascii")
894 result = urllib.parse.parse_qs("key=\u0141%E9-", encoding="ascii",
913 urllib.parse.parse_qs('&'.join(['a=a']*11), max_num_fields=10)
914 urllib.parse.parse_qs('&'.join(['a=a']*10), max_num_fields=10)
931 result = urllib.parse.parse_qs(orig, separator=';')
[all …]
Dtest_logging.py59 from urllib.parse import urlparse, parse_qs
2046 d = parse_qs(self.log_data.query)
2048 d = parse_qs(self.post_data.decode('utf-8'))
/third_party/python/Lib/
Dcgi.py187 return urllib.parse.parse_qs(qs, keep_blank_values, strict_parsing,
/third_party/python/Doc/library/
Dcgi.rst284 passed to :func:`urllib.parse.parse_qs` unchanged.
294 Returns a dictionary just like :func:`urllib.parse.parse_qs`: keys are the
Durllib.parse.rst179 .. function:: parse_qs(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/Lib/urllib/
Dparse.py672 def parse_qs(qs, keep_blank_values=False, strict_parsing=False, function
/third_party/python/Misc/NEWS.d/
D3.10.0b1.rst1101 Allow :class:`bytes` ``separator`` argument in ``urllib.parse.parse_qs`` and
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`
2243 query parameter separators in :func:`urllib.parse.parse_qs` and
D3.9.rst1543 query parameter separators in :func:`urllib.parse.parse_qs` and
D3.6.rst2451 query parameter separators in :func:`urllib.parse.parse_qs` and
D3.10.rst1477 query parameter separators in :func:`urllib.parse.parse_qs` and
D3.7.rst2565 query parameter separators in :func:`urllib.parse.parse_qs` and
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
31067 function parse_qs() now uses urllib.unquote() on the name as well as