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, eli.bendersky, ethan.furman
Date 2016-02-02.16:27:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1454430451.09.0.888937739305.issue26266@psf.upfronthosting.co.za>
In-reply-to
Content
The rules for what objects in an Enum become members and which do not are fairly straight-forward:

__double_underscore__ do not (but is reserved for Python)
_single_underscore_ do not (but is reserved for Enum itself)
any descriptored object (such as functions) do not

Which means the proper way to add constants/attributes to an Enum is to write a descriptor, but most folks don't think about that when the Enum is not working properly they (okay, and me :/ ) just add the double-underscore.

This question has already come up a couple times on StackOverflow:
- http://stackoverflow.com/q/17911188/208880
- http://stackoverflow.com/q/34465739/208880

While this doesn't come up very often, that just means it is even more likely to have the attribute be __double_underscored__ instead of descriptored.

The solution is have a descriptor in the Enum module for this case.  While it would be possible to have several (constant-unless-mutable, constant-even-if-mutable, not-constant, possibly others) I think the not-constant would be sufficient (aka a writable property), although I am not opposed to a constant-unless mutable version as well.

The not-constant version would look like this (I'll attach patch later):

class classattribute:
    def __init__(self, value):
        self.value = value
    def __get__(self, *args):
        return self.value
    def __set__(self, value):
        self.value = value
    def __repr__(self):
        return '%s(%r)' % (self.__class__.__name__, self.value)
History
Date User Action Args
2016-02-02 16:27:31ethan.furmansetrecipients: + ethan.furman, barry, eli.bendersky
2016-02-02 16:27:31ethan.furmansetmessageid: <1454430451.09.0.888937739305.issue26266@psf.upfronthosting.co.za>
2016-02-02 16:27:30ethan.furmanlinkissue26266 messages
2016-02-02 16:27:30ethan.furmancreate