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 Belmonte, Manjusaka, ethan.furman, jbelmonte, veky
Date 2021-01-25.23:01:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1611615675.24.0.339096609078.issue38250@roundup.psfhosted.org>
In-reply-to
Content
Thank you to everyone involved.  :-)

To answer the first three points that started this issue:

1. iteration -> each single-bit flag in the entire flag, or a
   combinations of flags, is returned one at a time -- not the
   empty set, not other multi-bit values

2. length is implemented -> `len(Color.BLUE | Color.RED) == 2`

3. subset is implemented as containment checking:
   `Color.BLUE in (Color.RED | Color.BLUE) is True`
History
Date User Action Args
2021-01-25 23:01:15ethan.furmansetrecipients: + ethan.furman, jbelmonte, veky, Manjusaka, John Belmonte
2021-01-25 23:01:15ethan.furmansetmessageid: <1611615675.24.0.339096609078.issue38250@roundup.psfhosted.org>
2021-01-25 23:01:15ethan.furmanlinkissue38250 messages
2021-01-25 23:01:14ethan.furmancreate