(self)
| 92 | self.owner = None |
| 93 | |
| 94 | def __index__(self): |
| 95 | # Reallocate list storage and inject invalid element types. |
| 96 | self.owner.clear() |
| 97 | self.owner.extend([bytearray(16)] * 1024) |
| 98 | return 7 |
| 99 | |
| 100 | |
| 101 | @pytest.mark.parametrize("xlang", [False, True]) |