Opened 16 years ago

Closed 16 years ago

Last modified 16 years ago

#8056 closed (duplicate)

Forms clean documentation omits essential

Reported by: Alper Cugun <djangoproject@…> Owned by: nobody
Component: Documentation Version: dev
Severity: Keywords: forms, newforms, clean
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Needed to dig into the source but the current documentation does not reflect that clean_FOO needs to return the cleaned value.

As in forms.py:
value = getattr(self, 'clean_%s' % name)()
self.cleaned_data[name] = value

So attached is a patch for the forms.txt documentation.

Change History (2)

comment:1 by Alper Cugun <djangoproject@…>, 16 years ago

Resolution: duplicate
Status: newclosed

comment:2 by Alper Cugun <djangoproject@…>, 16 years ago

Sorry duplicate of #8057 (which has the patch).

Note: See TracTickets for help on using tickets.
Back to Top