class A: def __init__(self): print("A__init__") class B: def __init__(self): print("B__init__")
class C(A, B): pass C() >> A__init__ Why __init__ class B will not be automatic executed? -- http://mail.python.org/mailman/listinfo/python-list
class A: def __init__(self): print("A__init__") class B: def __init__(self): print("B__init__")
class C(A, B): pass C() >> A__init__ Why __init__ class B will not be automatic executed? -- http://mail.python.org/mailman/listinfo/python-list