2
votes
How should I best emulate and/or avoid enum’s in Python?
The builtin way to do enums is:
(FOO, BAR, BAZ) = range(3)
which works fine for small sets, but has some drawbacks:
you need to count the number of e …
