I\'m creating a class (class0) in Python that is a currently based off of one class (class1); however, I\'d like to inherit from another class as well (class2). The thing ab
Why don't you use composition instead? Have your class keep a reference to the desired object, and delegate to it.