class Parent: pass class Child(Parent): pass class Inbread(Parent,Child): pass i = Inbread()