Home
last modified time | relevance | path

Searched refs:authreq (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Lib/
Durllib2.py873 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/
Drequest.py980 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/
Durllib2.rst775 .. 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/
Durllib.request.rst973 .. 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