You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
545 B
28 lines
545 B
4 years ago
|
"""
|
||
|
categories: Core,Classes
|
||
|
description: When inheriting from multiple classes super() only calls one class
|
||
|
cause: See :ref:`cpydiff_core_class_mro`
|
||
|
workaround: See :ref:`cpydiff_core_class_mro`
|
||
|
"""
|
||
|
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()
|