(
zelf: PyRef<Self>,
other: ArgBytesLike,
vm: &VirtualMachine,
)
| 237 | } |
| 238 | |
| 239 | fn __iadd__( |
| 240 | zelf: PyRef<Self>, |
| 241 | other: ArgBytesLike, |
| 242 | vm: &VirtualMachine, |
| 243 | ) -> PyResult<PyRef<Self>> { |
| 244 | zelf.try_resizable(vm)? |
| 245 | .elements |
| 246 | .extend(&*other.borrow_buf()); |
| 247 | Ok(zelf) |
| 248 | } |
| 249 | |
| 250 | fn __getitem__(&self, needle: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
| 251 | self._getitem(&needle, vm) |
nothing calls this directly
no test coverage detected