| 4296 | self.assertEqual(repr(c), '<A_with_slots>') |
| 4297 | |
| 4298 | class C_with_slots_dict(A_with_slots): |
| 4299 | pass |
| 4300 | c = C_with_slots_dict() |
| 4301 | with self.assertRaisesRegex(TypeError, 'layout differs'): |
| 4302 | C_with_slots_dict.__bases__ = (A_with_dict_weakref,) |
no outgoing calls
searching dependent graphs…