Hello, I've hit a roadblock in my project because I need to be able to add to the __bases__ of an existing class.
Luke suggested to use the 3-parameter version of type() but this creates a new type and I need to change the class in-place. I've skimmed some of the internal code but don't have a good enough idea of how everything works to decide if it would be practical for me to implement this. Can someone with more knowledge of this problem give me a high level run down of what will need to be done to implement a modifiable __bases__? Thanks, Lex

