Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backport fixes for PyPy (GH-5429) #5465

Merged
merged 2 commits into from Jun 11, 2023
Merged

Commits on Jun 4, 2023

  1. Fixes for PyPy (cythonGH-5429)

    Currently require a nightly PyPy build for Py3.9 to support async iteration and finalisation.
    
    Avoid PyIter_Next() and call tp_iternext() instead because PyIter_Next() swallows StopIteration exceptions and thus looses the return value.
    
    See https://foss.heptapod.net/pypy/pypy/-/issues/3280
    See https://foss.heptapod.net/pypy/pypy/-/issues/3935
    mattip committed Jun 4, 2023
    Configuration menu
    Copy the full SHA
    39c9dca View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    edfe963 View commit details
    Browse the repository at this point in the history