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 | 851 def find_user_password(self, realm, authuri): member in HTTPPasswordMgr 901 def find_user_password(self, realm, authuri): member in HTTPPasswordMgrWithDefaultRealm 902 user, password = HTTPPasswordMgr.find_user_password(self, realm, 906 return HTTPPasswordMgr.find_user_password(self, None, authuri) 983 user, pw = self.passwd.find_user_password(realm, host) 1000 user, passwd = self.passwd.find_user_password(None, req.full_url) 1132 user, pw = self.passwd.find_user_password(realm, req.full_url)
|
/external/python/cpython3/Lib/test/ |
D | test_urllib2.py | 143 find_user_pass = mgr.find_user_password 218 find_user_pass = mgr.find_user_password 532 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 | 903 .. method:: HTTPPasswordMgr.find_user_password(realm, authuri) 930 .. method:: HTTPPasswordMgr.find_user_password(realm, authuri)
|
/external/python/cpython2/Doc/library/ |
D | urllib2.rst | 760 .. method:: HTTPPasswordMgr.find_user_password(realm, authuri)
|