| 4248 | B_with_dict_weakref.__bases__ = (object,) |
| 4249 | |
| 4250 | class B_with_slots: |
| 4251 | __slots__ = ('x',) |
| 4252 | b = B_with_slots() |
| 4253 | with self.assertRaisesRegex(TypeError, 'layout differs'): |
| 4254 | B_with_slots.__bases__ = (A_with_dict_weakref,) |
no outgoing calls
searching dependent graphs…