Trait support for Python 3
- Free software: Apache license
pip install py3traits
https://py3traits.readthedocs.org/
To run the all tests run:
tox
Traits are classes which contain methods that can be used to extend other classes, similar to mixins, with exception that traits do not use inheritance. Instead, traits are composed into other classes. That is; methods, properties and internal state are copied to master object.
The point is to improve code reusability by dividing code into simple building blocks that can be then combined into actual classes.
Read more from wikipedia: http://en.wikipedia.org/wiki/Traits_class
Look for examples from examples folder.