Ubuntu Pastebin

Paste from smoser at Tue, 7 Jun 2016 17:37:33 +0000

Download as text
1
2
3
4
5
6
7
8
class _nameset(set):
    def __getattr__(self, name):
        if name in self:
            return name
        raise AttributeError("%s not a valid value" % name)


status = _nameset(("SUCCESS", "WARN", "FAIL"))
Download as text