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.
27 lines
536 B
27 lines
536 B
"""
|
|
categories: Core,Classes
|
|
description: When inheriting from multiple classes super() only calls one class
|
|
cause: Depth first non-exhaustive method resolution order
|
|
workaround: Unknown
|
|
"""
|
|
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()
|
|
|