(
zelf: &Py<Self>,
other: &PyObject,
vm: &VirtualMachine,
)
| 216 | } |
| 217 | |
| 218 | fn inplace_concat( |
| 219 | zelf: &Py<Self>, |
| 220 | other: &PyObject, |
| 221 | vm: &VirtualMachine, |
| 222 | ) -> PyResult<PyObjectRef> { |
| 223 | let mut seq = extract_cloned(other, Ok, vm)?; |
| 224 | zelf.borrow_vec_mut().append(&mut seq); |
| 225 | Ok(zelf.to_owned().into()) |
| 226 | } |
| 227 | |
| 228 | fn __iadd__( |
| 229 | zelf: PyRef<Self>, |
nothing calls this directly
no test coverage detected