Python - Multiple Inheritance and Method Resolution
Which of the following class definitions correctly shows multiple inheritance that can cause the diamond problem?
class A:
pass
class B(A):
pass
class C(A):
pass
class D(??):
passWhat should replace ???
