| 1570 | % (_MAXLINE, line_type)) |
| 1571 | |
| 1572 | class RemoteDisconnected(ConnectionResetError, BadStatusLine): |
| 1573 | def __init__(self, *pos, **kw): |
| 1574 | BadStatusLine.__init__(self, "") |
| 1575 | ConnectionResetError.__init__(self, *pos, **kw) |
| 1576 | |
| 1577 | # for backwards compatibility |
| 1578 | error = HTTPException |
no outgoing calls
no test coverage detected
searching dependent graphs…