Exception raised when downloaded size does not match content-length.
| 68 | |
| 69 | |
| 70 | class ContentTooShortError(URLError): |
| 71 | """Exception raised when downloaded size does not match content-length.""" |
| 72 | def __init__(self, message, content): |
| 73 | URLError.__init__(self, message) |
| 74 | self.content = content |
no outgoing calls
no test coverage detected
searching dependent graphs…