Multiple inheritance - diamond


  • Not Bot ParentA and ParentB inherit attributes from GrandParent,
  • but they are now merged.


examples/oop/inheritance/diamond.py

class GrandParent:
    ...

class ParentA(GrandParent):
    ...

class ParentB(GrandParent):
    ...

class Child(ParentA, ParentB):
    ...

c = Child()