(self)
| 107 | self.assertRaises(Exc, time.struct_time, C()) |
| 108 | |
| 109 | def test_reduce(self): |
| 110 | t = time.gmtime() |
| 111 | x = t.__reduce__() |
| 112 | |
| 113 | def test_extended_getslice(self): |
| 114 | # Test extended slicing by comparing with list slicing. |
nothing calls this directly
no test coverage detected