(self)
| 163 | class TestTZInfo(unittest.TestCase): |
| 164 | |
| 165 | def test_refcnt_crash_bug_22044(self): |
| 166 | tz1 = _TZInfo() |
| 167 | dt1 = datetime(2014, 7, 21, 11, 32, 3, 0, tz1) |
| 168 | with self.assertRaises(TypeError): |
| 169 | dt1.utcoffset() |
| 170 | |
| 171 | def test_non_abstractness(self): |
| 172 | # In order to allow subclasses to get pickled, the C implementation |
nothing calls this directly
no test coverage detected