Searched refs:authuri (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Lib/ |
D | urllib2.py | 794 def find_user_password(self, realm, authuri): argument 797 reduced_authuri = self.reduce_uri(authuri, default_port) 844 def find_user_password(self, realm, authuri): argument 846 authuri) 849 return HTTPPasswordMgr.find_user_password(self, None, authuri)
|
/external/python/cpython3/Lib/urllib/ |
D | request.py | 850 def find_user_password(self, realm, authuri): argument 853 reduced_authuri = self.reduce_uri(authuri, default_port) 900 def find_user_password(self, realm, authuri): argument 902 authuri) 905 return HTTPPasswordMgr.find_user_password(self, None, authuri) 931 def is_authenticated(self, authuri): argument 933 reduced_authuri = self.reduce_uri(authuri, default_port)
|
/external/python/cpython2/Lib/test/ |
D | test_urllib2.py | 454 def find_user_password(self, realm, authuri): argument 456 self.target_url = authuri
|
/external/python/cpython3/Lib/test/ |
D | test_urllib2.py | 552 def find_user_password(self, realm, authuri): argument 554 self.target_url = authuri
|
/external/python/cpython3/Doc/library/ |
D | urllib.request.rst | 927 .. method:: HTTPPasswordMgr.find_user_password(realm, authuri) 954 .. method:: HTTPPasswordMgrWithPriorAuth.find_user_password(realm, authuri) 966 .. method:: HTTPPasswordMgrWithPriorAuth.is_authenticated(self, authuri)
|
/external/python/cpython2/Doc/library/ |
D | urllib2.rst | 760 .. method:: HTTPPasswordMgr.find_user_password(realm, authuri)
|