blob: b054fdeee0785cb7191f91139695942221c303c3 (
plain)
1
2
3
4
5
6
7
8
9
|
fix Flag to use boundary CONFORM
This restores previous Flag behavior of allowing flags with non-sequential values to be combined; e.g.
class Skip(Flag):
TWO = 2
EIGHT = 8
Skip.TWO | Skip.EIGHT -> <Skip.TWO|EIGHT: 10>
|