Searched refs:authreq (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Lib/ |
D | urllib2.py | 873 def http_error_auth_reqed(self, authreq, host, req, headers): argument 877 authreq = headers.get(authreq, None) 879 if authreq: 880 mo = AbstractBasicAuthHandler.rx.search(authreq) 966 authreq = headers.get(auth_header, None) 977 if authreq: 978 scheme = authreq.split()[0] 980 return self.retry_http_digest_auth(req, authreq)
|
/external/python/cpython3/Lib/urllib/ |
D | request.py | 980 def http_error_auth_reqed(self, authreq, host, req, headers): argument 983 headers = headers.get_all(authreq) 1098 authreq = headers.get(auth_header, None) 1109 if authreq: 1110 scheme = authreq.split()[0] 1112 return self.retry_http_digest_auth(req, authreq)
|
/external/python/cpython2/Doc/library/ |
D | urllib2.rst | 775 .. method:: AbstractBasicAuthHandler.http_error_auth_reqed(authreq, host, req, headers) 778 the request. *authreq* should be the name of the header where the information 817 .. method:: AbstractDigestAuthHandler.http_error_auth_reqed(authreq, host, req, headers) 819 *authreq* should be the name of the header where the information about the realm
|
/external/python/cpython3/Doc/library/ |
D | urllib.request.rst | 973 .. method:: AbstractBasicAuthHandler.http_error_auth_reqed(authreq, host, req, headers) 976 the request. *authreq* should be the name of the header where the information 1015 .. method:: AbstractDigestAuthHandler.http_error_auth_reqed(authreq, host, req, headers) 1017 *authreq* should be the name of the header where the information about the realm
|