Tag: mixin
-
posts
-
Mixins and Python
Python supports a simple type of multiple inheritance which allows the creation of Mixins. Mixins are a sort of class that is used to “mix in” extra properties and methods into a class. This allows you to create classes in a compositional style. ...