This is a fork of recordclass by Zaur Shibzukhov.
- Free software: MIT license
- Documentation: https://trafaretclass.readthedocs.io.
recordclass is MIT Licensed python library. It implements the type
memoryslots
and factory functionrecordclass
in order to create record-like classes.
memoryslots
istuple
-like type, which supports assignment operations.recordclass
is a factory function that create a "mutable" analog ofcollection.namedtuple
.This library actually is a "proof of concept" for the problem of fast "mutable" alternative of
namedtuple
.
- TODO
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
0.4.3
- Add support for typing for python 3.6 (patches from Vladimir Bolshakov).
- Resolve memory leak issue.