How to call super method from grandchild class?
Well, this is one way of doing it: class Grandparent(object): def my_method(self): print “Grandparent” class Parent(Grandparent): def my_method(self): print “Parent” class Child(Parent): def my_method(self): print “Hello Grandparent” Grandparent.my_method(self) Maybe not what you want, but it’s the best python has unless I’m mistaken. What you’re asking sounds anti-pythonic and you’d have to explain why you’re doing … Read more