(&self, object: PyObjectRef, vm: &VirtualMachine)
| 594 | |
| 595 | #[pymethod] |
| 596 | fn append(&self, object: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> { |
| 597 | let value = value_from_object(vm, &object)?; |
| 598 | self.try_resizable(vm)?.elements.push(value); |
| 599 | Ok(()) |
| 600 | } |
| 601 | |
| 602 | #[pymethod] |
| 603 | fn remove(&self, object: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> { |
nothing calls this directly
no test coverage detected