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