Home
last modified time | relevance | path

Searched refs:parse_qsl (Results 1 – 10 of 10) 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/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/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.rst270 :func:`parse_qs` and :func:`parse_qsl` which are used to parse query strings
/external/python/cpython2/Doc/whatsnew/
D2.6.rst1810 The :func:`parse_qs` and :func:`parse_qsl` functions have been
/external/python/cpython2/Misc/
DNEWS9215 - Issue #600362: Relocated parse_qs() and parse_qsl(), from the cgi module
DHISTORY2908 - Bug #990307: when keep_empty_values is True, cgi.parse_qsl()