diff options
author | Mark Shannon <mark@hotpy.org> | 2023-08-09 08:30:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-09 08:30:50 (GMT) |
commit | 52fbcf61b5a70993c2d32332ff0ad9f369d968d3 (patch) | |
tree | 1b6112302fb001276acbffc7d29644b3f2611810 /Misc | |
parent | 2fb484e62518d15fc9a19565c2ab096bd741219a (diff) | |
download | cpython-52fbcf61b5a70993c2d32332ff0ad9f369d968d3.zip cpython-52fbcf61b5a70993c2d32332ff0ad9f369d968d3.tar.gz cpython-52fbcf61b5a70993c2d32332ff0ad9f369d968d3.tar.bz2 |
GH-107724: Fix the signature of `PY_THROW` callback functions. (GH-107725)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2023-08-04-21-25-26.gh-issue-107724.EbBXMr.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-08-04-21-25-26.gh-issue-107724.EbBXMr.rst b/Misc/NEWS.d/next/Core and Builtins/2023-08-04-21-25-26.gh-issue-107724.EbBXMr.rst new file mode 100644 index 0000000..6e853cf --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2023-08-04-21-25-26.gh-issue-107724.EbBXMr.rst @@ -0,0 +1,3 @@ +In pre-release versions of 3.12, up to rc1, the sys.monitoring callback +function for the ``PY_THROW`` event was missing the third, exception +argument. That is now fixed. |