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.py207 raise LineTooLong("header line")
259 raise LineTooLong("status line")
303 raise LineTooLong("header line")
506 raise LineTooLong("chunk size")
524 raise LineTooLong("trailer line")
915 raise LineTooLong("header line")
1452 class LineTooLong(HTTPException): class
Dserver.py338 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.py966 self.assertRaises((client.LineTooLong, client.BadStatusLine), resp.begin)
974 self.assertRaises(client.LineTooLong, resp.begin)
987 self.assertRaises(client.LineTooLong, resp.read)
/external/python/cpython3/Doc/library/
Dhttp.client.rst185 .. exception:: LineTooLong