(zelf: &Py<Self>, i: isize, x: PyObjectRef, vm: &VirtualMachine)
| 909 | |
| 910 | #[pymethod] |
| 911 | fn insert(zelf: &Py<Self>, i: isize, x: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> { |
| 912 | let mut w = zelf.try_resizable(vm)?; |
| 913 | w.insert(i, x, vm) |
| 914 | } |
| 915 | |
| 916 | #[pymethod] |
| 917 | fn pop(zelf: &Py<Self>, i: OptionalArg<isize>, vm: &VirtualMachine) -> PyResult { |
nothing calls this directly
no test coverage detected