Mark O. Brown

Results 13 comments of Mark O. Brown

This sounds like a great feature for my lab work, but If I understand the OP correctly, some want it to "force" the user to keep it linear. I think...

Also came up for me recently. I'll give the change in the referenced #881 a try. For example I have a little chess-related app and want to draw a chessboard...

Similarly, ``` from aenum import Enum class test(Enum): HELLO = "WORLD" FOO = "BAR" @classmethod def _missing_(cls, value: str): """Allow for case insensitive matching""" for member in cls: print(member) ```...