Re: [Python-Dev] PEP 435 -- Adding an Enum type to the Python standard library

2013年4月21日 07:13:38 -0700

On 21/04/13 15:33, Nick Coghlan wrote:
The PEP is fine, as it already allows duplicate names without encouraging them:
 class Insect(Enum):
 wasp = 1 # Preferred. Use this in new code.
 bee = 2
 ant = 3
 # Backwards compatibility aliases
 Insect.wsap = Insect.wasp
Hmmm, I must have missed this.
That satisfies my use-cases. Objection withdrawn.
--
Steven
_______________________________________________
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to