Multiple inheritance - diamond
- Not Bot ParentA and ParentB inherit attributes from GrandParent,
- but they are now merged.
class GrandParent:
...
class ParentA(GrandParent):
...
class ParentB(GrandParent):
...
class Child(ParentA, ParentB):
...
c = Child()