[Answered ]-Problem understanding a django form

2👍

super(UserField, self).clean(value) is calling the ancestor method : forms.EmailField.clean(value) to check that the email is well formed.

Leave a comment