Opened 17 years ago

Closed 17 years ago

Last modified 15 years ago

#3896 closed (fixed)

pass value to field specific clean function

Reported by: Henrik Vendelbo <info@…> Owned by: nobody
Component: Forms Version: dev
Severity: Keywords:
Cc: tailofthesun@…, hv@… Triage Stage: Design decision needed
Has patch: yes Needs documentation: yes
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by James Bennett)

newforms has this bit of code in the full_clean function:

            try:
                value = field.clean(value)
                self.clean_data[name] = value
                if hasattr(self, 'clean_%s' % name):
                    value = getattr(self, 'clean_%s' % name)()
                self.clean_data[name] = value
            except ValidationError, e:
                errors[name] = e.messages

Why is value not passed to the clean_%s function? Since it is required to return the accepted value, it is odd that it is forced to look it up. Basicly a dictionary read and assignment is required with no obvious gain. Logically I find it odd as well that clean_data contains values that are not cleaned fully yet.

Attachments (2)

3896.diff (690 bytes ) - added by Gary Wilson <gary.wilson@…> 17 years ago.
Pass the value to clean_XXX method and don't save to clean_data first.
3896.2.diff (2.0 KB ) - added by Gary Wilson <gary.wilson@…> 17 years ago.
Only the passing of value to clean_XXX method, with test fixes.

Download all attachments as: .zip

Change History (10)

comment:1 by James Bennett, 17 years ago

Description: modified (diff)

(cleaning up code formatting in description)

comment:2 by Gary Wilson <gary.wilson@…>, 17 years ago

Triage Stage: UnreviewedDesign decision needed

Seems logical to me. I think it is certainly a bug that clean_data will retain the value even if clean_XXX raises a ValidationError. So even if it is decided that value shouldn't be passed to clean_XXX, we at least need to fix the clean_data problem.

by Gary Wilson <gary.wilson@…>, 17 years ago

Attachment: 3896.diff added

Pass the value to clean_XXX method and don't save to clean_data first.

comment:3 by Gary Wilson <gary.wilson@…>, 17 years ago

Has patch: set
Needs documentation: set
Needs tests: set

by Gary Wilson <gary.wilson@…>, 17 years ago

Attachment: 3896.2.diff added

Only the passing of value to clean_XXX method, with test fixes.

comment:4 by Gary Wilson <gary.wilson@…>, 17 years ago

If this change goes in, then also consider removing the line specified in the first patch, which would fix #4391.

comment:5 by Gary Wilson <gary.wilson@…>, 17 years ago

Needs tests: unset

comment:6 by anonymous, 17 years ago

Cc: tailofthesun@… added

comment:7 by Philippe Raoult, 17 years ago

Resolution: fixed
Status: newclosed

it's really an implementation detail, but none the less fixed in [5346].

comment:8 by Thomas Güttler, 15 years ago

Cc: hv@… added
Note: See TracTickets for help on using tickets.
Back to Top