bckohan / enum-properties

Add properties and method specializations to Python enumeration values with a simple declarative syntax.
https://enum-properties.rtfd.io
MIT License
18 stars 0 forks source link

Performance improvements #39

Closed bckohan closed 1 year ago

bckohan commented 1 year ago

There are some deficiencies in how properties are stored and accessed on the member values. This access should be changed to direct attribute access instead of going through a member to value dictionary lookup. Will have to find a way to assign properties with None values to unlisted flag values.