(self, req, fp, code, msg, headers)
| 1209 | handler_order = 490 # before Basic auth |
| 1210 | |
| 1211 | def http_error_401(self, req, fp, code, msg, headers): |
| 1212 | host = urlparse(req.full_url)[1] |
| 1213 | retry = self.http_error_auth_reqed('www-authenticate', |
| 1214 | host, req, headers) |
| 1215 | self.reset_retry_count() |
| 1216 | return retry |
| 1217 | |
| 1218 | |
| 1219 | class ProxyDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler): |
nothing calls this directly
no test coverage detected