| 4258 | self.assertEqual(repr(b), '<A>') |
| 4259 | |
| 4260 | class B_with_slots_dict: |
| 4261 | __slots__ = ('x', '__dict__') |
| 4262 | b = B_with_slots_dict() |
| 4263 | with self.assertRaisesRegex(TypeError, 'layout differs'): |
| 4264 | B_with_slots_dict.__bases__ = (A_with_dict_weakref,) |
no outgoing calls
searching dependent graphs…