(zelf: PyRef<Self>, vm: &VirtualMachine)
| 559 | |
| 560 | impl Iterable for PyList { |
| 561 | fn iter(zelf: PyRef<Self>, vm: &VirtualMachine) -> PyResult { |
| 562 | Ok(PyListIterator { |
| 563 | internal: PyMutex::new(PositionIterInternal::new(zelf, 0)), |
| 564 | } |
| 565 | .into_pyobject(vm)) |
| 566 | } |
| 567 | } |
| 568 | |
| 569 | impl Comparable for PyList { |
no test coverage detected