| 1619 | # a mixed-in type will use the name for %s etc. |
| 1620 | PI = 3.1415926 |
| 1621 | class Int(enum.IntEnum): |
| 1622 | # IntEnum uses the value and not the name for %s etc. |
| 1623 | IDES = 15 |
| 1624 | class Str(enum.StrEnum): |
| 1625 | # StrEnum uses the value and not the name for %s etc. |
| 1626 | ABC = 'abc' |
no outgoing calls