| 1533 | self.line = line |
| 1534 | |
| 1535 | class LineTooLong(HTTPException): |
| 1536 | def __init__(self, line_type): |
| 1537 | HTTPException.__init__(self, "got more than %d bytes when reading %s" |
| 1538 | % (_MAXLINE, line_type)) |
| 1539 | |
| 1540 | class RemoteDisconnected(ConnectionResetError, BadStatusLine): |
| 1541 | def __init__(self, *pos, **kw): |
no outgoing calls
no test coverage detected