In C# I would go:
myObj.base
I have a Date class which inherits from date.datetime. The Date class overrides __gt__() and __lt__() so when using the < and > operators they are called. I do not want to use these overrides – I want to use the date.datetime methods on an instance of Date.
Use
super()to get the superclass object. Typehelp(super)in the Python command prompt.From the manual:
Let class B be a subclass of class A and class A have a method
def f(self)::super(B, self).f().super().f()without theB, selfarguments.