(zelf: &Py<Self>, vm: &VirtualMachine)
| 137 | impl Representable for PyGenerator { |
| 138 | #[inline] |
| 139 | fn repr_str(zelf: &Py<Self>, vm: &VirtualMachine) -> PyResult<String> { |
| 140 | Ok(zelf.inner.repr(zelf.as_object(), zelf.get_id(), vm)) |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | impl SelfIter for PyGenerator {} |