(self, request_handler)
| 642 | self._users = {} |
| 643 | |
| 644 | def authenticate(self, request_handler): |
| 645 | raise AuthRejectedError('Not implemented') |
| 646 | |
| 647 | def perform_basic_auth(self, user, password): |
| 648 | if user not in self._users: |
nothing calls this directly
no test coverage detected