You can find it in django.forms.forms.BaseForm._clean_fields 
(django/forms/forms.py line 271, the line you'll want to look at is 286).

To solve your specific problem, you'll want to do something like:

    for field in self.model._meta.fields:
        if hasattr(self, "process_%s" % field.name):
            getattr(self, "process_%s" % field.name)()

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/j3Zewm0agQUJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to