MCPcopy Index your code
hub / github.com/python/cpython / find_user_password

Method find_user_password

Lib/urllib/request.py:871–876  ·  view source on GitHub ↗
(self, realm, authuri)

Source from the content-addressed store, hash-verified

869class HTTPPasswordMgrWithDefaultRealm(HTTPPasswordMgr):
870
871 def find_user_password(self, realm, authuri):
872 user, password = HTTPPasswordMgr.find_user_password(self, realm,
873 authuri)
874 if user is not None:
875 return user, password
876 return HTTPPasswordMgr.find_user_password(self, None, authuri)
877
878
879class HTTPPasswordMgrWithPriorAuth(HTTPPasswordMgrWithDefaultRealm):

Callers

nothing calls this directly

Calls 1

find_user_passwordMethod · 0.45

Tested by

no test coverage detected