I have came around this question during an interview:
class Parent(object): def A(self): print \"in A\" class Child(Parent): def A(self):
Having instance C we could get its base class and call its A(): C.__class__.__base__().A()
C
A()
C.__class__.__base__().A()