(self, raw_password)
| 567 | ) |
| 568 | |
| 569 | def set_password(self, raw_password): |
| 570 | raise NotImplementedError( |
| 571 | "Django doesn't provide a DB representation for AnonymousUser." |
| 572 | ) |
| 573 | |
| 574 | def check_password(self, raw_password): |
| 575 | raise NotImplementedError( |
no outgoing calls