-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
gh-128078: Simplify logic in _PyGen_SetStopIterationValue
(follow-up to gh-128780)
#128287
Conversation
StopIteration
-like exceptions in _PyGen_SetStopIterationValue
StopAsyncIteration
in _PyGen_SetStopIterationValue
Instead of adding another special case, how about removing the special case for tuples? Maybe use |
@markshannon Is this something like that you had in mind? |
StopAsyncIteration
in _PyGen_SetStopIterationValue
_PyGen_SetStopIterationValue
(follow-up to gh-128780)
Co-authored-by: Kumar Aditya <[email protected]>
Thanks @picnixz for the PR, and @kumaraditya303 for merging it 🌮🎉.. I'm working now to backport this PR to: 3.12, 3.13. |
…rationValue` (pythonGH-128287) (cherry picked from commit 402b91d) Co-authored-by: Bénédikt Tran <[email protected]> Co-authored-by: Kumar Aditya <[email protected]>
GH-128789 is a backport of this pull request to the 3.13 branch. |
…rationValue` (pythonGH-128287) (cherry picked from commit 402b91d) Co-authored-by: Bénédikt Tran <[email protected]> Co-authored-by: Kumar Aditya <[email protected]>
GH-128790 is a backport of this pull request to the 3.12 branch. |
…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]>
…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]>
Some calls have aStopAsyncIteration
exception set at this point but we should ignore them since this function is meant to create aStopIteration
instead (or replace an existingStopAsyncIteration
)Alternative I have also envisaged:
- Unconditionally clear an optional caller's exception: this would be probably fine but this could hide bugs.- Also clearStopIteration
: 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 toStopAsyncIteration
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.