Lines Matching defs:FloatStooges
58 class FloatStooges(float, Enum):
63 FloatStooges = exc
1192 h = float.hex(FloatStooges.MOE.value)
1193 self.assertIs(FloatStooges.fromhex(h), FloatStooges.MOE)
1194 h = float.hex(FloatStooges.MOE.value + 0.01)
1196 FloatStooges.fromhex(h)
1337 if isinstance(FloatStooges, Exception):
1338 raise FloatStooges
1339 test_pickle_dump_load(self.assertIs, FloatStooges.CURLY)
1340 test_pickle_dump_load(self.assertIs, FloatStooges)