Searched refs:password_mgr (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Doc/library/ |
D | urllib2.rst | 250 .. 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/ |
D | urllib2.py | 866 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/ |
D | register.py | 296 urllib2.HTTPBasicAuthHandler(password_mgr=auth)
|
/external/python/cpython2/Doc/howto/ |
D | urllib2.rst | 471 password_mgr = urllib2.HTTPPasswordMgrWithDefaultRealm() 476 password_mgr.add_password(None, top_level_url, username, password) 478 handler = urllib2.HTTPBasicAuthHandler(password_mgr)
|