MCPcopy
hub / github.com/django/django / set_password

Method set_password

django/contrib/auth/models.py:569–572  ·  view source on GitHub ↗
(self, raw_password)

Source from the content-addressed store, hash-verified

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(

Calls

no outgoing calls