| 4235 | self.assertEqual(repr(b), r) |
| 4236 | |
| 4237 | class B_with_dict_weakref: |
| 4238 | pass |
| 4239 | b = B_with_dict_weakref() |
| 4240 | with self.assertRaisesRegex(TypeError, 'layout differs'): |
| 4241 | B.__bases__ = (A_with_slots,) |
no outgoing calls
searching dependent graphs…