gh-118820: Zero-valued flag enum has no name (GH-118848)

Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
This commit is contained in:
Nice Zombies 2024-06-19 22:09:53 +02:00 committed by GitHub
parent 753ef8db97
commit ed5ae6c4d7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1152,6 +1152,14 @@ the following are true:
>>> (Color.RED | Color.GREEN).name
'RED|GREEN'
>>> class Perm(IntFlag):
... R = 4
... W = 2
... X = 1
...
>>> (Perm.R & Perm.W).name is None # effectively Perm(0)
True
- multi-bit flags, aka aliases, can be returned from operations::
>>> Color.RED | Color.BLUE