class C(A, B):
def __init__(self):
super(C, self).__init__()
super(A, self).__init__()
pass
unless you have a reason not to hardcode parent classes in the constructor, i think all you need is just not using super() at all:
def __init__(self):
A.__init__(self)
B.__init__(self)
pass
--
http://groups.google.com/group/python_inside_maya
