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.py218 raise LineTooLong("header line")
270 raise LineTooLong("status line")
314 raise LineTooLong("header line")
517 raise LineTooLong("chunk size")
535 raise LineTooLong("trailer line")
909 raise LineTooLong("header line")
1484 class LineTooLong(HTTPException): class
Dserver.py339 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.py993 self.assertRaises((client.LineTooLong, client.BadStatusLine), resp.begin)
1001 self.assertRaises(client.LineTooLong, resp.begin)
1014 self.assertRaises(client.LineTooLong, resp.read)
/external/python/cpython3/Doc/library/
Dhttp.client.rst209 .. exception:: LineTooLong