| 4268 | self.assertEqual(repr(b), '<A>') |
| 4269 | |
| 4270 | class B_with_slots_dict_weakref: |
| 4271 | __slots__ = ('x', '__dict__', '__weakref__') |
| 4272 | b = B_with_slots_dict_weakref() |
| 4273 | with self.assertRaisesRegex(TypeError, 'layout differs'): |
| 4274 | B_with_slots_dict_weakref.__bases__ = (A_with_slots_dict,) |
no outgoing calls
searching dependent graphs…