I was about to suggest the same. On the same topic, I am wondering how would one validate (@validate decorator) the args and kwargs.
On Apr 6, 10:35 am, Michael Pedersen <[email protected]> wrote: > def myfunc(self, parm1, parm2, *p, **kw): > pass > > Any extra positional parameters will be passed in the list that is p, and > extra keyword arguments will be passed in the dict that is kw. Your app will > now be happy :) > -- You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/turbogears?hl=en.

