-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
[3.12] GH-106897: Add RERAISE
event to sys.monitoring
. (GH-107291)
#107346
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
Conversation
…07291) * Ensures that exception handling events are balanced. Each [re]raise event has a matching unwind/handled event.
RERAISE
event to sys.monitoring
. (GH-107291)RERAISE
event to sys.monitoring
. (GH-107291)
Misc/NEWS.d/next/Core and Builtins/2023-07-26-12-18-10.gh-issue-106897.EsGurc.rst
Outdated
Show resolved
Hide resolved
…e-106897.EsGurc.rst Co-authored-by: T. Wouters <[email protected]>
The ABI checking tool claims that the ABI has changed. |
Because it's reachable through symbols exposed in the ABI. The ABI checking tool is not tightly constrained, and errs on the side of caution. (I'm sure we'd all be happy if you wanted to spend some time creating an accurate checking tool with no false negatives and fewer false positives :) |
The ABI file diff is a quite a lot larger than I would have liked, but it seems to be OK. |
I've waded through the |
Manual backport of GH-107291.
@Yhg1s as release manager.
Fixes an omission in PEP 669, resulting in an imbalance between raise and unwind/handle events for exceptions.