(zelf: &Py<Self>, vm: &VirtualMachine)
| 141 | impl Representable for PyCoroutine { |
| 142 | #[inline] |
| 143 | fn repr_str(zelf: &Py<Self>, vm: &VirtualMachine) -> PyResult<String> { |
| 144 | Ok(zelf.inner.repr(zelf.as_object(), zelf.get_id(), vm)) |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | impl SelfIter for PyCoroutine {} |