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 craigh
Recipients craigh, ethan.furman
Date 2015-02-19.22:35:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1424385338.96.0.354321261757.issue23486@psf.upfronthosting.co.za>
In-reply-to
Content
It seems like performance is drastically improved by doing this:

class Category(Enum):
    tiny = 1
    medium = 2
    large = 3

tiny = Category.tiny
medium = Category.medium

In other words, resolving Category.tiny and Category.medium is what's slow.  The comparison itself is very fast.
History
Date User Action Args
2015-02-19 22:35:38craighsetrecipients: + craigh, ethan.furman
2015-02-19 22:35:38craighsetmessageid: <1424385338.96.0.354321261757.issue23486@psf.upfronthosting.co.za>
2015-02-19 22:35:38craighlinkissue23486 messages
2015-02-19 22:35:38craighcreate