/external/python/cpython2/Lib/test/ |
D | test_urllib2.py | 1198 def http_error_401(self, *args, **kwds): member in HandlerTests.test_basic_and_digest_auth_handlers.TestDigestAuthHandler 1200 urllib2.HTTPDigestAuthHandler.http_error_401(self, 1203 def http_error_401(self, *args, **kwds): member in HandlerTests.test_basic_and_digest_auth_handlers.TestBasicAuthHandler 1205 urllib2.HTTPBasicAuthHandler.http_error_401(self,
|
/external/python/cpython3/Lib/test/ |
D | test_urllib2.py | 1518 def http_error_401(self, *args, **kwds): member in HandlerTests.test_basic_and_digest_auth_handlers.TestDigestAuthHandler 1520 urllib.request.HTTPDigestAuthHandler.http_error_401(self, 1524 def http_error_401(self, *args, **kwds): member in HandlerTests.test_basic_and_digest_auth_handlers.TestBasicAuthHandler 1526 urllib.request.HTTPBasicAuthHandler.http_error_401(self,
|
/external/python/cpython2/Lib/ |
D | urllib2.py | 906 def http_error_401(self, req, fp, code, msg, headers): member in HTTPBasicAuthHandler 1095 def http_error_401(self, req, fp, code, msg, headers): member in HTTPDigestAuthHandler
|
D | urllib.py | 686 def http_error_401(self, url, fp, errcode, errmsg, headers, data=None): member in FancyURLopener
|
/external/python/cpython3/Lib/urllib/ |
D | request.py | 1024 def http_error_401(self, req, fp, code, msg, headers): member in HTTPBasicAuthHandler 1204 def http_error_401(self, req, fp, code, msg, headers): member in HTTPDigestAuthHandler 2182 def http_error_401(self, url, fp, errcode, errmsg, headers, data=None, member in FancyURLopener
|
/external/python/cpython2/Tools/webchecker/ |
D | webchecker.py | 749 def http_error_401(self, url, fp, errcode, errmsg, headers): member in MyURLopener
|
/external/python/cpython2/Doc/library/ |
D | urllib2.rst | 795 .. method:: HTTPBasicAuthHandler.http_error_401(req, fp, code, msg, hdrs) 831 .. method:: HTTPDigestAuthHandler.http_error_401(req, fp, code, msg, hdrs)
|
/external/python/cpython3/Doc/library/ |
D | urllib.request.rst | 974 .. method:: HTTPBasicAuthHandler.http_error_401(req, fp, code, msg, hdrs) 1010 .. method:: HTTPDigestAuthHandler.http_error_401(req, fp, code, msg, hdrs)
|