| 185 | |
| 186 | def test_subclass_must_override(self): |
| 187 | class NotEnough(tzinfo): |
| 188 | def __init__(self, offset, name): |
| 189 | self.__offset = offset |
| 190 | self.__name = name |
| 191 | self.assertIsSubclass(NotEnough, tzinfo) |
| 192 | ne = NotEnough(3, "NotByALongShot") |
| 193 | self.assertIsInstance(ne, tzinfo) |
no outgoing calls
searching dependent graphs…