(self)
| 1028 | ) |
| 1029 | |
| 1030 | def invalidate(self): |
| 1031 | if self.authenticated: |
| 1032 | del self._authenticate_future |
| 1033 | key = self.__key(self.opts) |
| 1034 | if key in AsyncAuth.creds_map: |
| 1035 | del AsyncAuth.creds_map[key] |
| 1036 | |
| 1037 | def authenticate(self, callback=None): |
| 1038 | """ |
no test coverage detected