Python also has super as well:
super(type[, object-or-type])
Return a proxy object that delegates method calls to a parent or sibling class of type. This is useful for accessing inherited methods that have been overridden in a class. The search order is same as that used by getattr() except that the type itself is skipped.
Example:
class A(object):
def foo(self):
print "foo"
class B(A):
def foo(self):
super(B, self).foo()
myB = B()
myB.foo()
