(zelf: &Py<Self>, vm: &VirtualMachine)
| 1091 | impl SelfIter for PyFutureIter {} |
| 1092 | impl IterNext for PyFutureIter { |
| 1093 | fn next(zelf: &Py<Self>, vm: &VirtualMachine) -> PyResult<PyIterReturn> { |
| 1094 | PyIterReturn::from_pyresult(zelf.send(vm.ctx.none(), vm), vm) |
| 1095 | } |
| 1096 | } |
| 1097 | |
| 1098 | #[pyattr] |