Vajrasky Kok added the comment: Simplified unit test. I reused enum Season in the test class.
By the way, there is another way to add support for enum without implementing __reversed__ method, which is adding support indexing by number (in __getitem__ method), e.g. Season[1] => Season.SPRING. But I prefer using __reversed__ method. ---------- Added file: http://bugs.python.org/file31733/add_reversed_support_for_enum_v2.patch _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue18995> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com