| 1616 | # issue18780 |
| 1617 | import enum |
| 1618 | class Float(float, enum.Enum): |
| 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 |
no outgoing calls
no test coverage detected