﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
26133	AbstractBaseUser missing password validaton	Fernando Miranda	nobody	"
Using the new password validation framework, it looks like {{{AbstractBaseUser}}} does not call password validators defined in {{{settings.py}}}:

{{{
# django.contrib.auth.models.py

class AbstractBaseUser(models.Model):
    password = models.CharField(_('password'), max_length=128)  
    ...
}}}

I'd expect something like this in the above line:

{{{
class AbstractBaseUser(models.Model):
    password = models.CharField(_('password'), max_length=128, validators=validators_list())  
}}}


This issue is related to #25052, but I'm not sure. 

"	Uncategorized	closed	contrib.auth	1.9	Normal	invalid			Unreviewed	0	0	0	0	0	0
