Home
last modified time | relevance | path

Searched refs:password_mgr (Results 1 – 4 of 4) 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/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)