Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
Dcgi.py187 def parse_qsl(qs, keep_blank_values=0, strict_parsing=0): function
191 return urlparse.parse_qsl(qs, keep_blank_values, strict_parsing)
610 for key, value in urlparse.parse_qsl(qs, self.keep_blank_values,
624 for key, value in urlparse.parse_qsl(self.qs_on_post,
Durlparse.py383 for name, value in parse_qsl(qs, keep_blank_values, strict_parsing):
390 def parse_qsl(qs, keep_blank_values=0, strict_parsing=0): function
/external/python/oauth2client/oauth2client/
Dutil.py203 q = dict(urllib.parse.parse_qsl(parsed[4]))
Dtools.py129 query = dict(urllib.parse.parse_qsl(query))
Dclient.py454 query_params = dict(urllib.parse.parse_qsl(parts.query))
1627 resp = dict(urllib.parse.parse_qsl(content))
/external/python/cpython3/Lib/test/
Dtest_urlparse.py138 result = urllib.parse.parse_qsl(orig, keep_blank_values=True)
141 result = urllib.parse.parse_qsl(orig, keep_blank_values=False)
874 result = urllib.parse.parse_qsl("key=\u0141%E9", encoding="latin-1")
876 result = urllib.parse.parse_qsl("key=\u0141%C3%A9", encoding="utf-8")
878 result = urllib.parse.parse_qsl("key=\u0141%C3%A9", encoding="ascii")
880 result = urllib.parse.parse_qsl("key=\u0141%E9-", encoding="ascii")
882 result = urllib.parse.parse_qsl("key=\u0141%E9-", encoding="ascii",
/external/python/cpython2/Lib/test/
Dtest_urlparse.py125 result = urlparse.parse_qsl(orig, keep_blank_values=True)
128 result = urlparse.parse_qsl(orig, keep_blank_values=False)
Dtest_cgi.py391 cgi.parse_qsl('a=A1&b=B2&B=B3'))
/external/python/cpython3/Lib/
Dcgi.py589 query = urllib.parse.parse_qsl(
605 query = urllib.parse.parse_qsl(
/external/python/cpython3/Lib/urllib/
Dparse.py692 pairs = parse_qsl(qs, keep_blank_values, strict_parsing,
703 def parse_qsl(qs, keep_blank_values=False, strict_parsing=False, function
/external/python/cpython2/Misc/NEWS.d/
D2.6rc1.rst283 Relocated parse_qs() and parse_qsl(), from the cgi module to the urlparse
/external/python/google-api-python-client/googleapiclient/
Ddiscovery.py28 from six.moves.urllib.parse import urlencode, urlparse, urljoin, urlunparse, parse_qsl
/external/python/cpython2/Doc/library/
Dcgi.rst300 .. function:: parse_qsl(qs[, keep_blank_values[, strict_parsing]])
302 This function is deprecated in this module. Use :func:`urlparse.parse_qsl`
Durlparse.rst153 .. function:: parse_qsl(qs[, keep_blank_values[, strict_parsing]])
Durllib.rst275 :func:`parse_qs` and :func:`parse_qsl` which are used to parse query strings
/external/python/cpython3/Doc/library/
Durllib.parse.rst205 .. function:: parse_qsl(qs, keep_blank_values=False, strict_parsing=False, encoding='utf-8', errors…
643 To reverse this encoding process, :func:`parse_qs` and :func:`parse_qsl` are
/external/python/six/documentation/
Dindex.rst706 * :func:`py2:urlparse.parse_qsl`
/external/python/cpython3/Doc/whatsnew/
D3.8.rst1771 * ``parse_qs``, ``parse_qsl``, and ``escape`` are removed from the :mod:`cgi`
D2.6.rst1814 The :func:`parse_qs` and :func:`parse_qsl` functions have been
/external/python/cpython2/Doc/whatsnew/
D2.6.rst1810 The :func:`parse_qs` and :func:`parse_qsl` functions have been
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a1.rst4182 Remove deprecated ``cgi.escape``, ``cgi.parse_qs`` and ``cgi.parse_qsl``.
/external/python/cpython3/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()
/external/python/cpython2/Misc/
DHISTORY2908 - Bug #990307: when keep_empty_values is True, cgi.parse_qsl()