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 John Hagen, barry, eli.bendersky, ethan.furman
Date 2016-08-02.07:27:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1470122851.51.0.974733579419.issue26988@psf.upfronthosting.co.za>
In-reply-to
Content
The 80-column thing isn't fixed yet, but I redid the patch:

- removed AutoNameEnum since there was some question of casing, etc
- redid the methodology of auto-generating values:
    instead of adding it all to the prepared namespace or the metaclass, I
    now look for a special method in the Enum class, and if present use
    that
- removed settings (no AutoNumber, AutoName, nor Unique)
- redid AutoEnum to use the _generate_next_value_ technique
- updated docs

Let me know what you think!
History
Date User Action Args
2016-08-02 07:27:33ethan.furmansetrecipients: + ethan.furman, barry, eli.bendersky, John Hagen
2016-08-02 07:27:31ethan.furmansetmessageid: <1470122851.51.0.974733579419.issue26988@psf.upfronthosting.co.za>
2016-08-02 07:27:31ethan.furmanlinkissue26988 messages
2016-08-02 07:27:30ethan.furmancreate