| 221 | class URLTimeout(URLError): |
| 222 | pass # URL takes to long to load. |
| 223 | class HTTPError(URLError): |
| 224 | pass # URL causes an error on the contacted server. |
| 225 | class HTTP301Redirect(HTTPError): |
| 226 | pass # Too many redirects. |
| 227 | # The site may be trying to set a cookie and waiting for you to return it, |
no outgoing calls
no test coverage detected
searching dependent graphs…