Opened 18 years ago
Closed 18 years ago
#3303 closed defect (fixed)
[patch] Cleaning the newforms fields `clean` methods
Reported by: | Chris Beaven | Owned by: | Adrian Holovaty |
---|---|---|---|
Component: | Forms | Version: | |
Severity: | normal | Keywords: | |
Cc: | Triage Stage: | Ready for checkin | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Small patch to clean up some inconsistencies with the clean
methods of fields in newforms.
(an outstanding inconsistency that I did not address in this patch is that sometimes super(fieldname, self).clean
is used, other times Field.clean
is used)
Attachments (1)
Change History (3)
by , 18 years ago
Attachment: | clean_clean.patch added |
---|
comment:1 by , 18 years ago
Triage Stage: | Unreviewed → Ready for checkin |
---|
comment:2 by , 18 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [4367]) Fixed #3303 -- Cleaned some newforms clean() method implementations. Thanks for the patch, SmileyChris