2017-02-06 23:55:37 -05:00
|
|
|
"""
|
|
|
|
categories: Core,Classes
|
|
|
|
description: When inheriting from multiple classes super() only calls one class
|
2017-07-09 06:47:23 -04:00
|
|
|
cause: See :ref:`cpydiff_core_class_mro`
|
|
|
|
workaround: See :ref:`cpydiff_core_class_mro`
|
2017-02-06 23:55:37 -05:00
|
|
|
"""
|
|
|
|
class A:
|
|
|
|
def __init__(self):
|
|
|
|
print("A.__init__")
|
|
|
|
|
|
|
|
class B(A):
|
|
|
|
def __init__(self):
|
|
|
|
print("B.__init__")
|
|
|
|
super().__init__()
|
|
|
|
|
|
|
|
class C(A):
|
|
|
|
def __init__(self):
|
|
|
|
print("C.__init__")
|
|
|
|
super().__init__()
|
|
|
|
|
|
|
|
|
|
|
|
class D(B,C):
|
|
|
|
def __init__(self):
|
|
|
|
print("D.__init__")
|
|
|
|
super().__init__()
|
|
|
|
|
|
|
|
D()
|