| 2480 | |
| 2481 | |
| 2482 | class ByteArraySubclass(bytearray): |
| 2483 | class Nested(bytearray): |
| 2484 | pass |
| 2485 | class Ŭñıçöđë(bytearray): |
| 2486 | pass |
| 2487 | |
| 2488 | class ByteArraySubclassWithSlots(bytearray): |
| 2489 | __slots__ = ('x', 'y', '__dict__') |
no outgoing calls
searching dependent graphs…