| 235 | class HTTP403Forbidden(HTTPError): |
| 236 | pass # URL is not accessible (user-agent?) |
| 237 | class HTTP404NotFound(HTTPError): |
| 238 | pass # URL doesn't exist on the internet. |
| 239 | class HTTP420Error(HTTPError): |
| 240 | pass # Used by Twitter for rate limiting. |
| 241 | class HTTP429TooMayRequests(HTTPError): |
no outgoing calls
no test coverage detected
searching dependent graphs…