| 4282 | self.assertEqual(repr(b), '<A>') |
| 4283 | |
| 4284 | class C_with_slots(A_with_slots): |
| 4285 | __slots__ = () |
| 4286 | c = C_with_slots() |
| 4287 | with self.assertRaisesRegex(TypeError, 'layout differs'): |
| 4288 | C_with_slots.__bases__ = (A_with_slots_dict,) |
no outgoing calls
searching dependent graphs…