| 519 | self.assertNotIn(float('nan'), MainEnum) |
| 520 | # |
| 521 | class OtherEnum(Enum): |
| 522 | one = auto() |
| 523 | two = auto() |
| 524 | self.assertNotIn(OtherEnum.two, MainEnum) |
| 525 | # |
| 526 | if MainEnum._member_type_ is object: |
nothing calls this directly
no test coverage detected
searching dependent graphs…