﻿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
17182	Best Practice for forms.Form.clean	Simon Meers	Simon Meers	"https://docs.djangoproject.com/en/dev/ref/forms/validation/#cleaning-and-validating-fields-that-depend-on-each-other

I would advocate changing the example from:

{{{
    def clean(self):
        cleaned_data = self.cleaned_data
        # ...
}}}

to

{{{
    def clean(self):
        cleaned_data = super(ContactForm, self).clean()
        # ...
}}}

for the sake of painless form inheritance. Any opposition?"	Cleanup/optimization	closed	Documentation	1.3	Normal	fixed	form clean super inheritance		Ready for checkin	1	0	0	0	0	0
