(self)
| 2665 | self.verify_field_equality(expected, got) |
| 2666 | |
| 2667 | def test_fromtimestamp_keyword_arg(self): |
| 2668 | import time |
| 2669 | |
| 2670 | # gh-85432: The parameter was named "t" in the pure-Python impl. |
| 2671 | self.theclass.fromtimestamp(timestamp=time.time()) |
| 2672 | |
| 2673 | def test_utcfromtimestamp(self): |
| 2674 | import time |
nothing calls this directly
no test coverage detected