show/hide this revision's text 2 added 6 characters in body

Try dynamically extending the bases that way you can take advantage of the mro and the methods are actual methods:

class Parent()Parent(object):
    def bar(self):
        print "bar"

class MetaFoo(type):
    def __new__(cls, name, bases, dict):
    	return type(name, bases + (Parent,), Parent,) + bases, dict)

class Foo(object):
    __metaclass__ = MetaFoo

if __name__ == "__main__":
    f = Foo()
    f.bar()
    print f.bar.func_name
show/hide this revision's text 1

Try dynamically extending the bases that way you can take advantage of the mro and the methods are actual methods:

class Parent():
    def bar(self):
        print "bar"

class MetaFoo(type):
    def __new__(cls, name, bases, dict):
    	return type(name, bases + (Parent,), dict)

class Foo(object):
    __metaclass__ = MetaFoo

if __name__ == "__main__":
    f = Foo()
    f.bar()
    print f.bar.func_name