-
Notifications
You must be signed in to change notification settings - Fork 124
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
StopIteration passtrough not handled correctly #544
Labels
Comments
RonnyPfannschmidt
added a commit
to RonnyPfannschmidt/pluggy
that referenced
this issue
Oct 31, 2024
Raising a StopIteration in a generator triggers a RuntimeError. If the RuntimeError of a generator has the passed in StopIteration as cause resume with that StopIteration as normal exception instead of failing with the RuntimeError.
RonnyPfannschmidt
added a commit
to RonnyPfannschmidt/pluggy
that referenced
this issue
Oct 31, 2024
Raising a StopIteration in a generator triggers a RuntimeError. If the RuntimeError of a generator has the passed in StopIteration as cause resume with that StopIteration as normal exception instead of failing with the RuntimeError.
RonnyPfannschmidt
added a commit
to RonnyPfannschmidt/pluggy
that referenced
this issue
Nov 3, 2024
Raising a StopIteration in a generator triggers a RuntimeError. If the RuntimeError of a generator has the passed in StopIteration as cause resume with that StopIteration as normal exception instead of failing with the RuntimeError.
RonnyPfannschmidt
added a commit
to RonnyPfannschmidt/pluggy
that referenced
this issue
Nov 3, 2024
Raising a StopIteration in a generator triggers a RuntimeError. If the RuntimeError of a generator has the passed in StopIteration as cause resume with that StopIteration as normal exception instead of failing with the RuntimeError.
RonnyPfannschmidt
added a commit
to RonnyPfannschmidt/pluggy
that referenced
this issue
Nov 3, 2024
Raising a StopIteration in a generator triggers a RuntimeError. If the RuntimeError of a generator has the passed in StopIteration as cause resume with that StopIteration as normal exception instead of failing with the RuntimeError.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cpython impl ref in contextmanager
a test in one of my testsuites failed with a StopIteration as exception
this ran into issues as new style hook wrappers dont manage the RuntimeError of stopIteration
The text was updated successfully, but these errors were encountered: