Searched refs:find_user_password (Results 1 – 3 of 3) sorted by relevance
/third_party/python/Lib/urllib/ |
D | request.py | 850 def find_user_password(self, realm, authuri): member in HTTPPasswordMgr 900 def find_user_password(self, realm, authuri): member in HTTPPasswordMgrWithDefaultRealm 901 user, password = HTTPPasswordMgr.find_user_password(self, realm, 905 return HTTPPasswordMgr.find_user_password(self, None, authuri) 1013 user, pw = self.passwd.find_user_password(realm, host) 1030 user, passwd = self.passwd.find_user_password(None, req.full_url) 1162 user, pw = self.passwd.find_user_password(realm, req.full_url)
|
/third_party/python/Lib/test/ |
D | test_urllib2.py | 147 find_user_pass = mgr.find_user_password 222 find_user_pass = mgr.find_user_password 536 def find_user_password(self, realm, authuri): member in MockPasswordManager
|
/third_party/python/Doc/library/ |
D | urllib.request.rst | 927 .. method:: HTTPPasswordMgr.find_user_password(realm, authuri) 954 .. method:: HTTPPasswordMgrWithPriorAuth.find_user_password(realm, authuri)
|