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 John Hagen
Recipients John Hagen, barry, eli.bendersky, ethan.furman
Date 2016-07-10.14:35:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468161334.57.0.761425912071.issue26988@psf.upfronthosting.co.za>
In-reply-to
Content
Some ideas for the new stdlib class:

BasicEnum - This helps emphasize that it is a simpler version of Enum that doesn't support all of the Enum features (like assigning values). It also helps communicate that if you don't need values this is a better fit.

AutoEnum - This new version (compared with AutoNumberEnum in the docs) does more than just auto number, since it does even the value assignment. Auto helps communicate that this is automatically creating much of the class internals for you.
History
Date User Action Args
2016-07-10 14:35:34John Hagensetrecipients: + John Hagen, barry, eli.bendersky, ethan.furman
2016-07-10 14:35:34John Hagensetmessageid: <1468161334.57.0.761425912071.issue26988@psf.upfronthosting.co.za>
2016-07-10 14:35:34John Hagenlinkissue26988 messages
2016-07-10 14:35:34John Hagencreate