| 1557 | self.line = line |
| 1558 | |
| 1559 | class LineTooLong(HTTPException): |
| 1560 | def __init__(self, line_type): |
| 1561 | HTTPException.__init__(self, "got more than %d bytes when reading %s" |
| 1562 | % (_MAXLINE, line_type)) |
| 1563 | |
| 1564 | class RemoteDisconnected(ConnectionResetError, BadStatusLine): |
| 1565 | def __init__(self, *pos, **kw): |
no outgoing calls
no test coverage detected