(zelf: PyRef<Self>, _vm: &VirtualMachine)
| 841 | |
| 842 | impl Iterable for PyFuture { |
| 843 | fn iter(zelf: PyRef<Self>, _vm: &VirtualMachine) -> PyResult { |
| 844 | Ok(PyFutureIter { |
| 845 | future: PyRwLock::new(Some(zelf.into())), |
| 846 | } |
| 847 | .into_pyobject(_vm)) |
| 848 | } |
| 849 | } |
| 850 | |
| 851 | fn get_future_repr_info(future: &PyObject, vm: &VirtualMachine) -> PyResult<Wtf8Buf> { |
no test coverage detected