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
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
[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
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
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