Searched refs:password_mgr (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Doc/library/ |
D | urllib.request.rst | 344 .. class:: AbstractBasicAuthHandler(password_mgr=None) 347 host and to a proxy. *password_mgr*, if given, should be something that is 367 .. class:: HTTPBasicAuthHandler(password_mgr=None) 369 Handle authentication with the remote host. *password_mgr*, if given, should 376 .. class:: ProxyBasicAuthHandler(password_mgr=None) 378 Handle authentication with the proxy. *password_mgr*, if given, should be 384 .. class:: AbstractDigestAuthHandler(password_mgr=None) 387 host and to a proxy. *password_mgr*, if given, should be something that is 393 .. class:: HTTPDigestAuthHandler(password_mgr=None) 395 Handle authentication with the remote host. *password_mgr*, if given, should [all …]
|
/third_party/python/Lib/distutils/command/ |
D | register.py | 286 urllib.request.HTTPBasicAuthHandler(password_mgr=auth)
|
/third_party/python/Doc/howto/ |
D | urllib2.rst | 494 password_mgr = urllib.request.HTTPPasswordMgrWithDefaultRealm() 499 password_mgr.add_password(None, top_level_url, username, password) 501 handler = urllib.request.HTTPBasicAuthHandler(password_mgr)
|
/third_party/python/Lib/urllib/ |
D | request.py | 960 def __init__(self, password_mgr=None): argument 961 if password_mgr is None: 962 password_mgr = HTTPPasswordMgr() 963 self.passwd = password_mgr
|