Re: how to pass a function name and its arguments inside the arguments of other function?

2007-11-03 Thread Stargaming
On Sat, 03 Nov 2007 02:21:30 +, jmborr wrote: > I need something like this: > > 1: superfoo( non-keyword-args, keyword-args, methodname, *kargs, > *kwargs): > 2: """non-keyword-args and keyword-args are arguments that 3: >apply to superfoo, while *kargs and **kwargs are ar

how to pass a function name and its arguments inside the arguments of other function?

2007-11-02 Thread jmborr
I need something like this: 1: superfoo( non-keyword-args, keyword-args, methodname, *kargs, *kwargs): 2: """non-keyword-args and keyword-args are arguments that 3: apply to superfoo, while *kargs and **kwargs are arguments 4: that apply to methodname. See below""" 5: