diff options
author | Victor Stinner <vstinner@python.org> | 2020-03-16 17:18:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-16 17:18:20 (GMT) |
commit | 046255c40fc0d9c5a4c528eb5955792fa08df66f (patch) | |
tree | b4f3c3601fa6de928cbdb1443bf002babd527c73 /Python | |
parent | 7f5302fed4ff0cc8042e639b29a0664a16bc2702 (diff) | |
download | cpython-046255c40fc0d9c5a4c528eb5955792fa08df66f.zip cpython-046255c40fc0d9c5a4c528eb5955792fa08df66f.tar.gz cpython-046255c40fc0d9c5a4c528eb5955792fa08df66f.tar.bz2 |
bpo-35370: PyEval_SetTrace() logs unraisable error (GH-18977) (GH-19029)
If PySys_Audit() fails in PyEval_SetProfile() or PyEval_SetTrace(),
log the error as an unraisable exception.
(cherry picked from commit f6a58507820c67e8d0fb07875cd1b1d9f5e510a8)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 5d78d5a..2db6e6b 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -4686,6 +4686,7 @@ void PyEval_SetProfile(Py_tracefunc func, PyObject *arg) { if (PySys_Audit("sys.setprofile", NULL) < 0) { + _PyErr_WriteUnraisableMsg("in PyEval_SetProfile", NULL); return; } @@ -4707,6 +4708,7 @@ void PyEval_SetTrace(Py_tracefunc func, PyObject *arg) { if (PySys_Audit("sys.settrace", NULL) < 0) { + _PyErr_WriteUnraisableMsg("in PyEval_SetTrace", NULL); return; } |