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 serhiy.storchaka
Recipients ethan.furman, magu, mdk, serhiy.storchaka
Date 2017-02-19.17:57:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1487527072.49.0.717117525382.issue29594@psf.upfronthosting.co.za>
In-reply-to
Content
Just make C and D protected or private.

class Foo(Flag):
    A = auto()
    B = auto()
    AB = A | B
    _C = auto()
    __D = auto()
    AC = A | _C
    ABD = A | B | __D
History
Date User Action Args
2017-02-19 17:57:52serhiy.storchakasetrecipients: + serhiy.storchaka, ethan.furman, mdk, magu
2017-02-19 17:57:52serhiy.storchakasetmessageid: <1487527072.49.0.717117525382.issue29594@psf.upfronthosting.co.za>
2017-02-19 17:57:52serhiy.storchakalinkissue29594 messages
2017-02-19 17:57:52serhiy.storchakacreate