Home
last modified time | relevance | path

Searched refs:LineTooLong (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Lib/
Dhttplib.py318 raise LineTooLong("header line")
396 raise LineTooLong("header line")
445 raise LineTooLong("header line")
617 raise LineTooLong("chunk size")
654 raise LineTooLong("trailer line")
810 raise LineTooLong("header line")
1356 class LineTooLong(HTTPException): class
/external/python/cpython3/Lib/http/
Dclient.py208 raise LineTooLong("header line")
260 raise LineTooLong("status line")
304 raise LineTooLong("header line")
508 raise LineTooLong("chunk size")
526 raise LineTooLong("trailer line")
923 raise LineTooLong("header line")
1467 class LineTooLong(HTTPException): class
Dserver.py330 except http.client.LineTooLong as err:
/external/python/cpython2/Lib/test/
Dtest_httplib.py648 self.assertRaises((httplib.LineTooLong, httplib.BadStatusLine), resp.begin)
656 self.assertRaises(httplib.LineTooLong, resp.begin)
668 self.assertRaises(httplib.LineTooLong, resp.read)
/external/python/cpython3/Lib/test/
Dtest_httplib.py927 self.assertRaises((client.LineTooLong, client.BadStatusLine), resp.begin)
935 self.assertRaises(client.LineTooLong, resp.begin)
948 self.assertRaises(client.LineTooLong, resp.read)
/external/python/cpython3/Doc/library/
Dhttp.client.rst179 .. exception:: LineTooLong