Searched refs:HTTPBasicAuthHandler (Results 1 – 15 of 15) sorted by relevance
| /external/openthread/tools/harness-automation/autothreadharness/ |
| D | pdu_controller.py | 38 from urllib2 import HTTPPasswordMgrWithDefaultRealm, HTTPBasicAuthHandler, build_opener 41 from urllib.request import HTTPPasswordMgrWithDefaultRealm, HTTPBasicAuthHandler, build_opener 397 authentication_handler = HTTPBasicAuthHandler(password_manager)
|
| /external/python/cpython3/Lib/test/ |
| D | test_urllib2.py | 19 from urllib.request import (Request, OpenerDirector, HTTPBasicAuthHandler, 1486 auth_handler = urllib.request.HTTPBasicAuthHandler(password_manager) 1581 class TestBasicAuthHandler(urllib.request.HTTPBasicAuthHandler): 1584 urllib.request.HTTPBasicAuthHandler.http_error_401(self, 1621 basic_auth_handler = urllib.request.HTTPBasicAuthHandler(None) 1675 auth_prior_handler = HTTPBasicAuthHandler(pwd_manager) 1700 auth_prior_handler = HTTPBasicAuthHandler(pwd_manager)
|
| D | test_urllib2_localnet.py | 308 ah = urllib.request.HTTPBasicAuthHandler() 317 ah = urllib.request.HTTPBasicAuthHandler()
|
| /external/python/cpython2/Doc/howto/ |
| D | urllib2.rst | 437 ``HTTPBasicAuthHandler``. For a more detailed discussion of this subject -- 455 ``HTTPBasicAuthHandler`` and an opener to use this handler. 457 The ``HTTPBasicAuthHandler`` uses an object called a password manager to handle 478 handler = urllib2.HTTPBasicAuthHandler(password_mgr) 492 In the above example we only supplied our ``HTTPBasicAuthHandler`` to
|
| /external/python/cpython2/Lib/distutils/command/ |
| D | register.py | 296 urllib2.HTTPBasicAuthHandler(password_mgr=auth)
|
| /external/python/cpython2/Lib/test/ |
| D | test_urllib2.py | 1131 auth_handler = urllib2.HTTPBasicAuthHandler(password_manager) 1150 auth_handler = urllib2.HTTPBasicAuthHandler(password_manager) 1202 class TestBasicAuthHandler(urllib2.HTTPBasicAuthHandler): 1205 urllib2.HTTPBasicAuthHandler.http_error_401(self,
|
| D | test_urllib2_localnet.py | 303 ah = urllib2.HTTPBasicAuthHandler() 314 ah = urllib2.HTTPBasicAuthHandler()
|
| /external/python/cpython3/Lib/distutils/command/ |
| D | register.py | 286 urllib.request.HTTPBasicAuthHandler(password_mgr=auth)
|
| /external/python/setuptools/setuptools/_distutils/command/ |
| D | register.py | 286 urllib.request.HTTPBasicAuthHandler(password_mgr=auth)
|
| /external/python/cpython3/Doc/howto/ |
| D | urllib2.rst | 451 ``HTTPBasicAuthHandler``. For a more detailed discussion of this subject -- 471 ``HTTPBasicAuthHandler`` and an opener to use this handler. 473 The ``HTTPBasicAuthHandler`` uses an object called a password manager to handle 494 handler = urllib.request.HTTPBasicAuthHandler(password_mgr) 508 In the above example we only supplied our ``HTTPBasicAuthHandler`` to
|
| /external/python/cpython2/Doc/library/ |
| D | urllib2.rst | 259 .. class:: HTTPBasicAuthHandler([password_mgr]) 791 HTTPBasicAuthHandler Objects 795 .. method:: HTTPBasicAuthHandler.http_error_401(req, fp, code, msg, hdrs) 992 auth_handler = urllib2.HTTPBasicAuthHandler()
|
| /external/python/cpython3/Doc/library/ |
| D | urllib.request.rst | 369 .. class:: HTTPBasicAuthHandler(password_mgr=None) 374 be supported. HTTPBasicAuthHandler will raise a :exc:`ValueError` when 1007 HTTPBasicAuthHandler Objects 1011 .. method:: HTTPBasicAuthHandler.http_error_401(req, fp, code, msg, hdrs) 1266 auth_handler = urllib.request.HTTPBasicAuthHandler()
|
| /external/python/cpython2/Lib/ |
| D | urllib2.py | 902 class HTTPBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler): class
|
| /external/python/six/documentation/ |
| D | index.rst | 784 * :class:`py2:urllib2.HTTPBasicAuthHandler`
|
| /external/python/cpython3/Lib/urllib/ |
| D | request.py | 1050 class HTTPBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler): class
|