(self, value)
| 2837 | ) |
| 2838 | |
| 2839 | def assertIsPositiveZero(self, value): |
| 2840 | self.assertTrue( |
| 2841 | value == 0 and math.copysign(1, value) > 0, |
| 2842 | msg="Expected a positive zero, got {!r}".format(value) |
| 2843 | ) |
| 2844 | |
| 2845 | def assertIsNegativeZero(self, value): |
| 2846 | self.assertTrue( |
no test coverage detected