Searched refs:authreq (Results 1 – 2 of 2) sorted by relevance
/third_party/python/Lib/urllib/ |
D | request.py | 986 def http_error_auth_reqed(self, authreq, host, req, headers): argument 989 headers = headers.get_all(authreq) 1104 authreq = headers.get(auth_header, None) 1115 if authreq: 1116 scheme = authreq.split()[0] 1118 return self.retry_http_digest_auth(req, authreq)
|
/third_party/python/Doc/library/ |
D | urllib.request.rst | 978 .. method:: AbstractBasicAuthHandler.http_error_auth_reqed(authreq, host, req, headers) 981 the request. *authreq* should be the name of the header where the information 1020 .. method:: AbstractDigestAuthHandler.http_error_auth_reqed(authreq, host, req, headers) 1022 *authreq* should be the name of the header where the information about the realm
|