I have several class where I need to inject a static method; this static method should be called with type (not instance) as the first argument, and pass all remaining args to the implementation (the example at ideone):
# function which takes class type as the first argument
# it will be injected as static method to classes below
def _AnyClass_me(Class,*args,**kw):
print Class,str(args),str(kw)
# a number of classes
class Class1: pass
class Class2: pass
# iterate over class where should be the method injected
# c is bound via default arg (lambda in loop)
# all arguments to the static method should be passed to _AnyClass_me
# via *args and **kw (which is the problem, see below)
for c in (Class1,Class2):
c.me=staticmethod(lambda Class=c,*args,**kw:_AnyClass_me(Class,*args,**kw))
# these are OK
Class1.me() # work on class itself
Class2().me() # works on instance as well
# fails to pass the first (Class) arg to _anyClass_me correctly
# the 123 is passed as the first arg instead, and Class not at all
Class1.me(123)
Class2().me(123)
The output is (first two lines correct, other two incorrect):
__main__.Class1 () {}
__main__.Class2 () {}
123 () {}
123 () {}
I suspect there is a problem in the lambda line, in the mixture of default argument with *args
but I am unable to sort it out.
How can I have the Class object being passed correctly in presence of other args?