Home
last modified time | relevance | path

Searched refs:max_num_fields (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Lib/urllib/
Dparse.py700 encoding='utf-8', errors='replace', max_num_fields=None, separator='&'): argument
732 max_num_fields=max_num_fields, separator=separator)
742 encoding='utf-8', errors='replace', max_num_fields=None, separator='&'): argument
797 if max_num_fields is not None:
799 if max_num_fields < num_fields:
/external/python/cpython3/Doc/library/
Durllib.parse.rst197 …ues=False, strict_parsing=False, encoding='utf-8', errors='replace', max_num_fields=None, separato…
218 The optional argument *max_num_fields* is the maximum number of fields to
220 *max_num_fields* fields read.
234 Added *max_num_fields* parameter.
243 …ues=False, strict_parsing=False, encoding='utf-8', errors='replace', max_num_fields=None, separato…
263 The optional argument *max_num_fields* is the maximum number of fields to
265 *max_num_fields* fields read.
277 Added *max_num_fields* parameter.
/external/python/cpython3/Lib/test/
Dtest_urlparse.py1135 urllib.parse.parse_qsl('&'.join(['a=a']*11), max_num_fields=10)
1136 urllib.parse.parse_qsl('&'.join(['a=a']*10), max_num_fields=10)
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a1.rst2938 Adding ``max_num_fields`` to ``cgi.FieldStorage`` to make DOS attacks harder