(&self, x: PyObjectRef)
| 181 | impl PyList { |
| 182 | #[pymethod] |
| 183 | pub(crate) fn append(&self, x: PyObjectRef) { |
| 184 | self.borrow_vec_mut().push(x); |
| 185 | } |
| 186 | |
| 187 | #[pymethod] |
| 188 | pub(crate) fn extend(&self, x: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> { |
no test coverage detected