Home
last modified time | relevance | path

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

/third_party/python/Doc/library/
Durllib.request.rst344 .. 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/
Dregister.py286 urllib.request.HTTPBasicAuthHandler(password_mgr=auth)
/third_party/python/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)
/third_party/python/Lib/urllib/
Drequest.py960 def __init__(self, password_mgr=None): argument
961 if password_mgr is None:
962 password_mgr = HTTPPasswordMgr()
963 self.passwd = password_mgr