(self)
| 589 | |
| 590 | class LoginHandler(BaseRequestHandler): |
| 591 | def post(self): |
| 592 | auth = self.application.auth |
| 593 | return auth.authenticate(self) |
| 594 | |
| 595 | |
| 596 | class AuthInfoHandler(BaseRequestHandler): |
nothing calls this directly
no test coverage detected