(self)
| 2983 | insane) |
| 2984 | |
| 2985 | def test_negative_float_fromtimestamp(self): |
| 2986 | # The result is tz-dependent; at least test that this doesn't |
| 2987 | # fail (like it did before bug 1646728 was fixed). |
| 2988 | self.theclass.fromtimestamp(-1.05) |
| 2989 | |
| 2990 | def test_negative_float_utcfromtimestamp(self): |
| 2991 | with self.assertWarns(DeprecationWarning): |
nothing calls this directly
no test coverage detected