Hi Dawid, Welcome to the django-developers mailing list!
This is pretty normal Pythonic behaviour. Inside these methods, Django casts the given object to a string with str() (specifically, in force_bytes). Most objects can be cast to a string, although I agree many of them won't necessarily make sense as passwords. This is because Python normally leans on "duck typing". Runtime type checking is normally used sparingly since it removes flexibility. Static type checkers are gaining some popularity but it remains to be seen how far they will affect Django and its ecosystem. Even then, I'm not sure we'd be able to enforce strings-only as the type signature here, as it wouldn't be backward compatible. Thanks, Adam On Wed, 11 Mar 2020 at 22:40, Dawid Czeluśniak <czelusniakda...@gmail.com> wrote: > Hi all, > > I've noticed that both set_password and check_password methods accept > values other than str as parameters. For example I'm able to set password > to boolean values: > > In [1]: u.set_password(True) > > In [2]: u.save() > > In [3]: u.refresh_from_db() > > In [4]: u.check_password(True) > Out[4]: True > > In [5]: u.check_password('True') > Out[5]: True > > What is even weirder, I'm able to set password as Exception class: > > In [1]: u.set_password(Exception) > > In [2]: u.save() > > In [3]: u.refresh_from_db() > > In [4]: u.check_password(repr(Exception)) > Out[4]: True > > and the User instance itself: > > In [1]: u.set_password(u) > > In [2]: u.save() > > In [3]: u.refresh_from_db() > > In [4]: u.check_password(u) > Out[4]: True > > In [5]: u.check_password(str(u)) > Out[5]: True > > IMHO this is not correct behaviour especially because Django documentation > implies that these methods accept strings. > > set_password(raw_password) >> Sets the user’s password to the given *raw string*, taking care of the >> password hashing. Doesn’t save the User object. >> >> check_password(raw_password) >> Returns True if the given *raw string* is the correct password for the >> user. (This takes care of the password hashing in making the comparison.) > > > Please let me know if this is reproducible on your side. > > Dawid > > -- > You received this message because you are subscribed to the Google Groups > "Django developers (Contributions to Django itself)" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to django-developers+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-developers/0429a2cd-a16c-429f-98b5-938629073ca5%40googlegroups.com > <https://groups.google.com/d/msgid/django-developers/0429a2cd-a16c-429f-98b5-938629073ca5%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Adam -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-developers+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-developers/CAMyDDM3VHBjeQBbbbWXcu5_h%3DAjOFvMefz%3DoJ-iKHSAZKrrKLQ%40mail.gmail.com.