| 1558 | pass |
| 1559 | |
| 1560 | class BadStatusLine(HTTPException): |
| 1561 | def __init__(self, line): |
| 1562 | if not line: |
| 1563 | line = repr(line) |
| 1564 | self.args = line, |
| 1565 | self.line = line |
| 1566 | |
| 1567 | class LineTooLong(HTTPException): |
| 1568 | def __init__(self, line_type): |
no outgoing calls
no test coverage detected
searching dependent graphs…