(zelf: PyRef<Self>, vm: &VirtualMachine)
| 1571 | |
| 1572 | impl Iterable for PyStr { |
| 1573 | fn iter(zelf: PyRef<Self>, vm: &VirtualMachine) -> PyResult { |
| 1574 | Ok(PyStrIterator { |
| 1575 | internal: PyMutex::new((PositionIterInternal::new(zelf, 0), 0)), |
| 1576 | } |
| 1577 | .into_pyobject(vm)) |
| 1578 | } |
| 1579 | } |
| 1580 | |
| 1581 | impl AsMapping for PyStr { |
no test coverage detected