(self, realm, authuri)
| 869 | class 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 | |
| 879 | class HTTPPasswordMgrWithPriorAuth(HTTPPasswordMgrWithDefaultRealm): |
nothing calls this directly
no test coverage detected