vote up 1 vote down star

How can I get the class that defined a method in Python?

I'd want the following example to print "main.FooClass":

class FooClass:
    def foo_method(self):
        print "foo"

class BarClass(FooClass):
    pass

bar = BarClass()
print get_class_that_defined_method(bar.foo_method)
flag

What version of Python are you using? Before 2.2 you could use im_class, but that was changed to show the type of the bound self object. – Kathy Van Stone Jun 7 at 2:40
Good to know. But I'm using 2.6. – Jesse Aldridge Jun 7 at 2:48

2 Answers

vote up 7 vote down check
import inspect

def get_class_that_defined_method(meth):
  obj = meth.im_self
  for cls in inspect.getmro(meth.im_class):
    if meth.__name__ in cls.__dict__: return cls
  return None
link|flag
It works, thanks! – Jesse Aldridge Jun 7 at 2:29
You're welcome! – Alex Martelli Jun 7 at 2:33
vote up 0 vote down

What's wrong with

bar.__class__

?

That's the class that defines all methods of object bar.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.