Re: kwargs keyword evaluation

2006-02-15 Thread [EMAIL PROTECTED]
Thanks. That also worked. I will use that, since apply() is deprecated as of 2.3. Thanks! -Tom -- http://mail.python.org/mailman/listinfo/python-list

Re: kwargs keyword evaluation

2006-02-15 Thread [EMAIL PROTECTED]
Well, I knew about the apply() function, but totally forgot to use it. It worked. Example: apply(function_call, (), {keyword: "Tom"}) -- http://mail.python.org/mailman/listinfo/python-list

Re: kwargs keyword evaluation

2006-02-15 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: > Let's assume I have a function that makes good use of the kwargs > parameter. It requires that there is a certain "format" for the kwargs > keywords. (I am using Django, btw). The format is like such: > "SOMEVAL__exact", etc., where SOMEVAL is some value that it parses f

Re: kwargs keyword evaluation

2006-02-15 Thread Carsten Haese
On Wed, 2006-02-15 at 11:40, [EMAIL PROTECTED] wrote: > Ok, so here is my situation: > > Let's assume I have a function that makes good use of the kwargs > parameter. It requires that there is a certain "format" for the kwargs > keywords. (I am using Django, btw). The format is like such: > "SOMEV

kwargs keyword evaluation

2006-02-15 Thread [EMAIL PROTECTED]
Ok, so here is my situation: Let's assume I have a function that makes good use of the kwargs parameter. It requires that there is a certain "format" for the kwargs keywords. (I am using Django, btw). The format is like such: "SOMEVAL__exact", etc., where SOMEVAL is some value that it parses from