This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ethan.furman
Recipients barry, cool-RR, ethan.furman, pitrou
Date 2014-09-27.21:47:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1411854450.42.0.929825043825.issue22504@psf.upfronthosting.co.za>
In-reply-to
Content
Enums have a definition order to aid in the use-case of auto-numbering, and to make displays consistent.  However, the basic Enum type is unordered.

If you need/want your particular enum type to be ordered, mix-in the ordered magic methods.
History
Date User Action Args
2014-09-27 21:47:30ethan.furmansetrecipients: + ethan.furman, barry, pitrou, cool-RR
2014-09-27 21:47:30ethan.furmansetmessageid: <1411854450.42.0.929825043825.issue22504@psf.upfronthosting.co.za>
2014-09-27 21:47:30ethan.furmanlinkissue22504 messages
2014-09-27 21:47:30ethan.furmancreate