class A: def __init__(self): print('A.__init__') class B(A): pass print(B.__mro__) # (, , ) b = B() # A.__init__ çağrılır