| 4314 | def __repr__(self): |
| 4315 | return '<A_int>' |
| 4316 | class B_int(int): |
| 4317 | __slots__ = () |
| 4318 | b = B_int(42) |
| 4319 | with self.assertRaisesRegex(TypeError, 'layout differs'): |
| 4320 | B_int.__bases__ = (object,) |
no outgoing calls
searching dependent graphs…