27 Oct
2003
27 Oct
'03
4:19 p.m.
Hi, Given such a situation... class MyClass(Base1, Base2, Base3): ... def foo(self, arg1, arg2): """ """ x = ... y = ... ... z = MyClass.inheritedAttribute('foo')(self, x, y) ... In the case where more than one base class has a "foo" method/attribute, in what order does inheritedAttribute() search that "foo" attribute ? Base1 -> Base2 -> Base3 ? Base3 -> Base2 -> Base1 ? Other ? Many thanks in advance. -- Gilles