(
zelf: PyRef<Self>,
other: PyObjectRef,
vm: &VirtualMachine,
)
| 226 | } |
| 227 | |
| 228 | fn __iadd__( |
| 229 | zelf: PyRef<Self>, |
| 230 | other: PyObjectRef, |
| 231 | vm: &VirtualMachine, |
| 232 | ) -> PyResult<PyRef<Self>> { |
| 233 | let mut seq = extract_cloned(&other, Ok, vm)?; |
| 234 | zelf.borrow_vec_mut().append(&mut seq); |
| 235 | Ok(zelf) |
| 236 | } |
| 237 | |
| 238 | #[pymethod] |
| 239 | fn clear(&self) { |
nothing calls this directly
no test coverage detected