(self, req, fp, code, msg, headers)
| 1024 | auth_header = 'Authorization' |
| 1025 | |
| 1026 | def http_error_401(self, req, fp, code, msg, headers): |
| 1027 | url = req.full_url |
| 1028 | response = self.http_error_auth_reqed('www-authenticate', |
| 1029 | url, req, headers) |
| 1030 | return response |
| 1031 | |
| 1032 | |
| 1033 | class ProxyBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler): |
nothing calls this directly
no test coverage detected