On Oct 19, 2019, at 22:57, Steve Jorgensen <ste...@stevej.name> wrote:
> 
> The idea is to use a class as a singleton collection of choices where every 
> choice appears both as an attribute of the class/singleton and as a 
> value/label pair when treating it as a sequence.

What you’re describing is just enum.Enum, minus half its features, but a 
sequence instead of a mapping.

I’m not sure why you’d ever want this, but if you did, you could just subclass 
EnumMeta and add/override the sequence methods.

At any rate, almost all of that seems irrelevant to your issue. Making it act 
like both a singleton with members and like a sequence is already trivial to do 
today.

What you’re looking for is a way to auto-assign attributes on lookup during 
class definition. Which is an idea that was actually brought up for enums, and 
specifically rejected in PEP 435, but there’s a proof of concept implementation 
of it anyway if you want it.

It’s also worth looking at the implementation of the various alternative enum 
implementations on PyPI (both the ones that pre-existed 3.4, and the ones that 
build on it).
_______________________________________________
Python-ideas mailing list -- python-ideas@python.org
To unsubscribe send an email to python-ideas-le...@python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/python-ideas@python.org/message/X3VET2XR7SILJ3HB4BGTDWYYJ7DQXB2D/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to