Searched refs:find_user_password (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Lib/ |
D | urllib2.py | 794 def find_user_password(self, realm, authuri): member in HTTPPasswordMgr 844 def find_user_password(self, realm, authuri): member in HTTPPasswordMgrWithDefaultRealm 845 user, password = HTTPPasswordMgr.find_user_password(self, realm, 849 return HTTPPasswordMgr.find_user_password(self, None, authuri) 890 user, pw = self.passwd.find_user_password(realm, host) 1020 user, pw = self.passwd.find_user_password(realm, req.get_full_url())
|
/external/python/cpython3/Lib/urllib/ |
D | request.py | 844 def find_user_password(self, realm, authuri): member in HTTPPasswordMgr 894 def find_user_password(self, realm, authuri): member in HTTPPasswordMgrWithDefaultRealm 895 user, password = HTTPPasswordMgr.find_user_password(self, realm, 899 return HTTPPasswordMgr.find_user_password(self, None, authuri) 1007 user, pw = self.passwd.find_user_password(realm, host) 1024 user, passwd = self.passwd.find_user_password(None, req.full_url) 1156 user, pw = self.passwd.find_user_password(realm, req.full_url)
|
/external/python/cpython3/Lib/test/ |
D | test_urllib2.py | 145 find_user_pass = mgr.find_user_password 220 find_user_pass = mgr.find_user_password 534 def find_user_password(self, realm, authuri): member in MockPasswordManager
|
/external/python/cpython2/Lib/test/ |
D | test_urllib2.py | 454 def find_user_password(self, realm, authuri): member in MockPasswordManager
|
/external/python/cpython3/Doc/library/ |
D | urllib.request.rst | 922 .. method:: HTTPPasswordMgr.find_user_password(realm, authuri) 949 .. method:: HTTPPasswordMgrWithPriorAuth.find_user_password(realm, authuri)
|
/external/python/cpython2/Doc/library/ |
D | urllib2.rst | 760 .. method:: HTTPPasswordMgr.find_user_password(realm, authuri)
|