When creating a simple object hierarchy in Python, I\'d like to be able to invoke methods of the parent class from a derived class. In Perl and Java, there is a keyword for
This is a more abstract method:
super(self.__class__,self).baz(arg)