[Python-Dev] Minor change to Enum -- should it go into 3.5.2? (original) (raw)
Guido van Rossum gvanrossum at gmail.com
Sun May 8 18:29:20 EDT 2016
- Previous message (by thread): [Python-Dev] Minor change to Enum -- should it go into 3.5.2?
- Next message (by thread): [Python-Dev] Minor change to Enum -- should it go into 3.5.2?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
If enum were provisional it would be okay, but since it isn't, I think this change can't go into 3.5.2. Think if this: could any code that works in 3.5.1 be broken by the change?
--Guido (mobile) On May 8, 2016 1:11 PM, "Ethan Furman" <ethan at stoneleaf.us> wrote:
Currently, the Enum creation process ignores dunder attributes, and blocks all sunder attributes.
Because of this, the enum34 backport used order instead of order to provide a mechanism for ordering the enum members (which I never really liked). However, I've been working on my aenum [1] package, which uses several other sunder attributes (for python2 compatibility) so I enabled order instead and promote that spelling in the docs. Unlike the other sunder attributes, order has no meaningful affect in Python 3 so I'd like to change the stdlib Enum to allow it (and either ignore completely, or check it is the same as the definition order). My question is: Should I put this change in 3.5.2? - Yes means 3.5.2+ will work with order, 3.4, 3.5.0, and 3.5.1 will not; - No means 3.4 and all of 3.5 will not. --
Ethan
Python-Dev mailing list Python-Dev at python.org https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/guido%40python.org -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://mail.python.org/pipermail/python-dev/attachments/20160508/1d2c16a8/attachment.html>
- Previous message (by thread): [Python-Dev] Minor change to Enum -- should it go into 3.5.2?
- Next message (by thread): [Python-Dev] Minor change to Enum -- should it go into 3.5.2?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]