I am trying to implement infer_class function that, given a method, figures out the class to which the method belongs.
So far I have something like this:
import inspect
def infer_class(f):
if inspect.ismethod(f):
return f.im_self if f.im_class == type else f.im_class
# elif ... what about staticmethod-s?
else:
raise TypeError("Can't infer the class of %r" % f)
It does not work for @staticmethod-s because I was not able to come up with a way to achieve this.
Any suggestions?
Here's `infer_class` in action:
>>> class Wolf(object):
... @classmethod
... def huff(cls, a, b, c):
... pass
... def snarl(self):
... pass
... @staticmethod
... def puff(k,l, m):
... pass
...
>>> print infer_class(Wolf.huff)
<class '__main__.Wolf'>
>>> print infer_class(Wolf().huff)
<class '__main__.Wolf'>
>>> print infer_class(Wolf.snarl)
<class '__main__.Wolf'>
>>> print infer_class(Wolf().snarl)
<class '__main__.Wolf'>
>>> print infer_class(Wolf.puff)
Traceback (most recent call last): File "<stdin>", line 1, in <module> File "<stdin>", line 6, in infer_class TypeError: Can't infer the class of <function puff at ...>

setattr(obj, func_name, my_stub). If f is a module-level function, I useinspect.getmodule(f)to obtain the object andf.__name__to get its name. For class methods & instance methods, I use the code above. For static methods, I am out of luck, it would seem. – Pavel Repin Jun 4 at 17:45