86c7507233
These tests are intended to fail, as they provide a programatic record of differences between uPy and CPython. They also contain a special comment at the start of the file which has meta-data describing the difference, including known causes and known workarounds.
28 lines
536 B
Python
28 lines
536 B
Python
"""
|
|
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()
|