(zelf: PyRef<Self>, vm: &VirtualMachine)
| 582 | |
| 583 | impl Iterable for PyDict { |
| 584 | fn iter(zelf: PyRef<Self>, vm: &VirtualMachine) -> PyResult { |
| 585 | Ok(PyDictKeyIterator::new(zelf).into_pyobject(vm)) |
| 586 | } |
| 587 | } |
| 588 | |
| 589 | impl Representable for PyDict { |
no test coverage detected