Closed gi0baro closed 1 year ago
Both PyIterAwaitable and PyFutureAwaitable always returns None on PyPy after iteration. The actual result is properly set from Rust, in CPython everything works as expected.
PyIterAwaitable
PyFutureAwaitable
None
This is confirmed to be a bug in PyO3, should be fixed by https://github.com/PyO3/pyo3/pull/3471
Both
PyIterAwaitable
andPyFutureAwaitable
always returnsNone
on PyPy after iteration. The actual result is properly set from Rust, in CPython everything works as expected.