[Python-ideas] PEP for enum library type?

Nick Coghlan ncoghlan at gmail.com
Wed Feb 13 05:07:48 CET 2013


On 13 Feb 2013 09:11, "Tim Delaney" <timothy.c.delaney at gmail.com> wrote:
>
> On 13 February 2013 09:56, Guido van Rossum <guido at python.org> wrote:
>>
>> Frankly, enums are not that useful in small programs. For large
>> programs or libraries, and especially for public APIs, the extra cost
>> of defining the enum shouldn't count against them.
>>
>> Let's just import Barry's enums into the stdlib.
>
>
> That's entirely your call. FWIW I probably won't use them, as they fail
to meet my needs for an enum, #1 being not having to specify their values
in any way if I don't want to. Once you get past 3 or 4 values, it's too
easy to miss or reuse a value.

What's wrong with enum.make? That just accepts the sequence of names
namedtuple style, no values specified anywhere.

Cheers,
Nick.

>
> Tim Delaney
>
> _______________________________________________
> Python-ideas mailing list
> Python-ideas at python.org
> http://mail.python.org/mailman/listinfo/python-ideas
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-ideas/attachments/20130213/9709eabc/attachment.html>


More information about the Python-ideas mailing list