diff options
author | Victor Stinner <vstinner@python.org> | 2020-03-16 16:41:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-16 16:41:44 (GMT) |
commit | f6a58507820c67e8d0fb07875cd1b1d9f5e510a8 (patch) | |
tree | c9e924d2d8e90372fb523c2f42086f6fac51f327 /Misc | |
parent | 356c878fbf2a97aa3ab7951fd7456d219ff0b466 (diff) | |
download | cpython-f6a58507820c67e8d0fb07875cd1b1d9f5e510a8.zip cpython-f6a58507820c67e8d0fb07875cd1b1d9f5e510a8.tar.gz cpython-f6a58507820c67e8d0fb07875cd1b1d9f5e510a8.tar.bz2 |
bpo-35370: PyEval_SetTrace() logs unraisable error (GH-18977)
If PySys_Audit() fails in PyEval_SetProfile() or PyEval_SetTrace(),
log the error as an unraisable exception.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/C API/2020-03-13-16-44-23.bpo-35370.sXRA-r.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2020-03-13-16-44-23.bpo-35370.sXRA-r.rst b/Misc/NEWS.d/next/C API/2020-03-13-16-44-23.bpo-35370.sXRA-r.rst new file mode 100644 index 0000000..d3f1d29 --- /dev/null +++ b/Misc/NEWS.d/next/C API/2020-03-13-16-44-23.bpo-35370.sXRA-r.rst @@ -0,0 +1,2 @@ +If :c:func:`PySys_Audit` fails in :c:func:`PyEval_SetProfile` or +:c:func:`PyEval_SetTrace`, log the error as an unraisable exception. |