| 1641 | # a mixed-in type will use the name for %s etc. |
| 1642 | PI = 3.1415926 |
| 1643 | class Int(enum.IntEnum): |
| 1644 | # IntEnum uses the value and not the name for %s etc. |
| 1645 | IDES = 15 |
| 1646 | class Str(enum.StrEnum): |
| 1647 | # StrEnum uses the value and not the name for %s etc. |
| 1648 | ABC = 'abc' |