| 241 | class HTTP429TooMayRequests(HTTPError): |
| 242 | pass # Used by Twitter for rate limiting. |
| 243 | class HTTP500InternalServerError(HTTPError): |
| 244 | pass # Generic server error. |
| 245 | |
| 246 | class URL(object): |
| 247 |
no outgoing calls
no test coverage detected
searching dependent graphs…