Re: #3896 pass value to field specific clean function

2008-12-09 Thread alex.gay...@gmail.com
Well technically it could be done in a backwards compatible way with some clever introspection. Alex On Dec 9, 5:55 pm, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On Tue, Dec 9, 2008 at 11:44 PM, Thomas Guettler <[EMAIL PROTECTED]> wrote: > > >http://code.djangoproject.com/ticket/3896 >

Re: #3896 pass value to field specific clean function

2008-12-09 Thread Russell Keith-Magee
On Tue, Dec 9, 2008 at 11:44 PM, Thomas Guettler <[EMAIL PROTECTED]> wrote: > > http://code.djangoproject.com/ticket/3896 > > The initial question of this ticket was: > > Why is value not passed to the clean_%s function? > > Although the ticket is closed, this has not changed. > > I think clean

#3896 pass value to field specific clean function

2008-12-09 Thread Thomas Guettler
http://code.djangoproject.com/ticket/3896 The initial question of this ticket was: Why is value not passed to the clean_%s function? Although the ticket is closed, this has not changed. I think clean methods should look like this: {{{ def clean_foo(self, value): ... }}} Up to now, you