Home
last modified time | relevance | path

Searched refs:_MAXHEADERS (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/
Dhttplib.py220 _MAXHEADERS = 100 variable
308 if len(hlist) > _MAXHEADERS:
309 raise HTTPException("got more than %d headers" % _MAXHEADERS)
/external/python/cpython3/Lib/http/
Dclient.py113 _MAXHEADERS = 100 variable
209 if len(headers) > _MAXHEADERS:
210 raise HTTPException("got more than %d headers" % _MAXHEADERS)
/external/python/cpython3/Lib/test/
Dtest_httplib.py702 for i in range(client._MAXHEADERS + 1)) + '\r\n'