4 ms·
Is that just multiple inheritance, or are mixins something else?
by heylo 12y ago
Is that just multiple inheritance, or are mixins something else?
- Walkman 12y agoMultiple inheritance with your discipline to not do more complicated things. Only inherit from base 'object', nothing else, so you will have no complicated inheritance problems.
- falcolas 12y agoWhich, in reality, rarely happens. Looking through the code in the Python standard library shows how even the exemplar mixin examples are rarely so pure.