Home
last modified time | relevance | path

Searched refs:password_mgr (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Doc/library/
Durllib2.rst250 .. class:: AbstractBasicAuthHandler([password_mgr])
253 host and to a proxy. *password_mgr*, if given, should be something that is
259 .. class:: HTTPBasicAuthHandler([password_mgr])
261 Handle authentication with the remote host. *password_mgr*, if given, should be
267 .. class:: ProxyBasicAuthHandler([password_mgr])
269 Handle authentication with the proxy. *password_mgr*, if given, should be
275 .. class:: AbstractDigestAuthHandler([password_mgr])
278 host and to a proxy. *password_mgr*, if given, should be something that is
284 .. class:: HTTPDigestAuthHandler([password_mgr])
286 Handle authentication with the remote host. *password_mgr*, if given, should be
[all …]
/external/python/cpython2/Lib/
Durllib2.py866 def __init__(self, password_mgr=None): argument
867 if password_mgr is None:
868 password_mgr = HTTPPasswordMgr()
869 self.passwd = password_mgr
/external/python/cpython2/Lib/distutils/command/
Dregister.py296 urllib2.HTTPBasicAuthHandler(password_mgr=auth)
/external/python/cpython3/Lib/distutils/command/
Dregister.py286 urllib.request.HTTPBasicAuthHandler(password_mgr=auth)
/external/python/cpython3/Doc/library/
Durllib.request.rst339 .. class:: AbstractBasicAuthHandler(password_mgr=None)
342 host and to a proxy. *password_mgr*, if given, should be something that is
362 .. class:: HTTPBasicAuthHandler(password_mgr=None)
364 Handle authentication with the remote host. *password_mgr*, if given, should
371 .. class:: ProxyBasicAuthHandler(password_mgr=None)
373 Handle authentication with the proxy. *password_mgr*, if given, should be
379 .. class:: AbstractDigestAuthHandler(password_mgr=None)
382 host and to a proxy. *password_mgr*, if given, should be something that is
388 .. class:: HTTPDigestAuthHandler(password_mgr=None)
390 Handle authentication with the remote host. *password_mgr*, if given, should
[all …]
/external/python/cpython2/Doc/howto/
Durllib2.rst471 password_mgr = urllib2.HTTPPasswordMgrWithDefaultRealm()
476 password_mgr.add_password(None, top_level_url, username, password)
478 handler = urllib2.HTTPBasicAuthHandler(password_mgr)
/external/python/cpython3/Doc/howto/
Durllib2.rst494 password_mgr = urllib.request.HTTPPasswordMgrWithDefaultRealm()
499 password_mgr.add_password(None, top_level_url, username, password)
501 handler = urllib.request.HTTPBasicAuthHandler(password_mgr)
/external/python/cpython3/Lib/urllib/
Drequest.py954 def __init__(self, password_mgr=None): argument
955 if password_mgr is None:
956 password_mgr = HTTPPasswordMgr()
957 self.passwd = password_mgr