| 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, |
| 228 | # or taking other measures to discern a browser from a script. |
| 229 | # For specific purposes you should build your own urllib2.HTTPRedirectHandler |
| 230 | # and pass it to urllib2.build_opener() in URL.open() |
| 231 | class HTTP400BadRequest(HTTPError): |
| 232 | pass # URL contains an invalid request. |
| 233 | class HTTP401Authentication(HTTPError): |
no outgoing calls
no test coverage detected
searching dependent graphs…