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