(self)
| 879 | class HTTPPasswordMgrWithPriorAuth(HTTPPasswordMgrWithDefaultRealm): |
| 880 | |
| 881 | def __init__(self): |
| 882 | self.authenticated = {} |
| 883 | super().__init__() |
| 884 | |
| 885 | def add_password(self, realm, uri, user, passwd, is_authenticated=False): |
| 886 | self.update_authenticated(uri, is_authenticated) |