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

gh-128078: Simplify logic in _PyGen_SetStopIterationValue (follow-up to gh-128780) #128287

Merged
merged 8 commits into from
Jan 13, 2025

Conversation

picnixz
Copy link
Member

@picnixz picnixz commented Dec 27, 2024

Some calls have a StopAsyncIteration exception set at this point but we should ignore them since this function is meant to create a StopIteration instead (or replace an existing StopAsyncIteration)

Alternative I have also envisaged:

- Unconditionally clear an optional caller's exception: this would be probably fine but this could hide bugs.
- Also clear StopIteration: strictly speaking I think we could also do it but as I'm not extremely familiar with the call graph, I'd prefer restricting it to StopAsyncIteration for now.

Following #128780, no need for checking whether an exception is set or not as no exception should be set at all. So we can simplify the logic.

@picnixz picnixz requested a review from markshannon as a code owner December 27, 2024 12:48
@picnixz picnixz changed the title gh-128078: clear StopIteration-like exceptions in _PyGen_SetStopIterationValue gh-128078: clear caller's StopAsyncIteration in _PyGen_SetStopIterationValue Dec 27, 2024
@picnixz picnixz added needs backport to 3.12 bug and security fixes needs backport to 3.13 bugs and security fixes labels Dec 27, 2024
@picnixz picnixz requested a review from ZeroIntensity January 3, 2025 11:35
@markshannon
Copy link
Member

Instead of adding another special case, how about removing the special case for tuples?
IIRC, that is only there as a workaround the weird behavior of PyErr_SetObject #101578.

Maybe use PyErr_SetRaisedException instead?

@picnixz
Copy link
Member Author

picnixz commented Jan 11, 2025

@markshannon Is this something like that you had in mind?

@picnixz picnixz changed the title gh-128078: clear caller's StopAsyncIteration in _PyGen_SetStopIterationValue gh-128078: Simplify logic in _PyGen_SetStopIterationValue (follow-up to gh-128780) Jan 13, 2025
Co-authored-by: Kumar Aditya <[email protected]>
@kumaraditya303 kumaraditya303 merged commit 402b91d into python:main Jan 13, 2025
43 checks passed
@miss-islington-app
Copy link

Thanks @picnixz for the PR, and @kumaraditya303 for merging it 🌮🎉.. I'm working now to backport this PR to: 3.12, 3.13.
🐍🍒⛏🤖

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Jan 13, 2025
…rationValue` (pythonGH-128287)

(cherry picked from commit 402b91d)

Co-authored-by: Bénédikt Tran <[email protected]>
Co-authored-by: Kumar Aditya <[email protected]>
@bedevere-app
Copy link

bedevere-app bot commented Jan 13, 2025

GH-128789 is a backport of this pull request to the 3.13 branch.

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Jan 13, 2025
…rationValue` (pythonGH-128287)

(cherry picked from commit 402b91d)

Co-authored-by: Bénédikt Tran <[email protected]>
Co-authored-by: Kumar Aditya <[email protected]>
@bedevere-app bedevere-app bot removed the needs backport to 3.13 bugs and security fixes label Jan 13, 2025
@bedevere-app
Copy link

bedevere-app bot commented Jan 13, 2025

GH-128790 is a backport of this pull request to the 3.12 branch.

@bedevere-app bedevere-app bot removed the needs backport to 3.12 bug and security fixes label Jan 13, 2025
@picnixz picnixz deleted the fix/core/async-gens-except-128078 branch January 13, 2025 16:00
Yhg1s pushed a commit that referenced this pull request Feb 3, 2025
…erationValue` (GH-128287) (#128790)

gh-128078: Use `PyErr_SetRaisedException` in `_PyGen_SetStopIterationValue` (GH-128287)
(cherry picked from commit 402b91d)

Co-authored-by: Bénédikt Tran <[email protected]>
Co-authored-by: Kumar Aditya <[email protected]>
Yhg1s pushed a commit that referenced this pull request Feb 3, 2025
…erationValue` (GH-128287) (#128789)

gh-128078: Use `PyErr_SetRaisedException` in `_PyGen_SetStopIterationValue` (GH-128287)
(cherry picked from commit 402b91d)

Co-authored-by: Bénédikt Tran <[email protected]>
Co-authored-by: Kumar Aditya <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants