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:19:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1424384374.31.0.240525040421.issue23486@psf.upfronthosting.co.za>
In-reply-to
Content
I may not have been clear before.  What I mean is, code like this:

for obj in get_objects():
    if obj.category == Cat.cat1:
        #do something
    elif obj.category == Cat.cat2:
        #do something else
    elif obj.category == Cat.cat3 or obj.category == Cat.cat4:
        #...

obj.category is already an instance of Cat, in other words.  The consumer is using it to determine what to do with each obj.
History
Date User Action Args
2015-02-19 22:19:34craighsetrecipients: + craigh, ethan.furman
2015-02-19 22:19:34craighsetmessageid: <1424384374.31.0.240525040421.issue23486@psf.upfronthosting.co.za>
2015-02-19 22:19:34craighlinkissue23486 messages
2015-02-19 22:19:34craighcreate