(self, req, fp, code, msg, headers)
| 1220 | handler_order = 490 # before Basic auth |
| 1221 | |
| 1222 | def http_error_407(self, req, fp, code, msg, headers): |
| 1223 | host = req.host |
| 1224 | retry = self.http_error_auth_reqed('proxy-authenticate', |
| 1225 | host, req, headers) |
| 1226 | self.reset_retry_count() |
| 1227 | return retry |
| 1228 | |
| 1229 | class AbstractHTTPHandler(BaseHandler): |
| 1230 |
nothing calls this directly
no test coverage detected