aboutsummaryrefslogtreecommitdiffstats
path: root/parse/enum.py
blob: bf35d01366ba227f131c2214d63b1fb73c56915e (plain) (blame)
1
2
3
4
5
6
7
class Enum(frozenset):
    def __getattr__(self, name):
        if name in self:
            return name
        raise AttributeError