diff options
author | Tian Gao <gaogaotiantian@hotmail.com> | 2023-10-09 08:38:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-09 08:38:45 (GMT) |
commit | dd4bb0529e44ac6f75a9ebbfcbf5d73dc251b7a7 (patch) | |
tree | 74449cf04513063416fc4a2ba624af0510b1611f /Python | |
parent | 9f8282de6bdc3e1f976318821ff151ed45fedc56 (diff) | |
download | cpython-dd4bb0529e44ac6f75a9ebbfcbf5d73dc251b7a7.zip cpython-dd4bb0529e44ac6f75a9ebbfcbf5d73dc251b7a7.tar.gz cpython-dd4bb0529e44ac6f75a9ebbfcbf5d73dc251b7a7.tar.bz2 |
gh-110514: Add PY_THROW to `sys.setprofile` events (GH-110524)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/legacy_tracing.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Python/legacy_tracing.c b/Python/legacy_tracing.c index 9258091..97d39a1 100644 --- a/Python/legacy_tracing.c +++ b/Python/legacy_tracing.c @@ -378,6 +378,11 @@ _PyEval_SetProfile(PyThreadState *tstate, Py_tracefunc func, PyObject *arg) return -1; } if (set_callbacks(PY_MONITORING_SYS_PROFILE_ID, + (vectorcallfunc)sys_profile_func3, PyTrace_CALL, + PY_MONITORING_EVENT_PY_THROW, -1)) { + return -1; + } + if (set_callbacks(PY_MONITORING_SYS_PROFILE_ID, (vectorcallfunc)sys_profile_func3, PyTrace_RETURN, PY_MONITORING_EVENT_PY_RETURN, PY_MONITORING_EVENT_PY_YIELD)) { return -1; @@ -417,7 +422,8 @@ _PyEval_SetProfile(PyThreadState *tstate, Py_tracefunc func, PyObject *arg) events = (1 << PY_MONITORING_EVENT_PY_START) | (1 << PY_MONITORING_EVENT_PY_RESUME) | (1 << PY_MONITORING_EVENT_PY_RETURN) | (1 << PY_MONITORING_EVENT_PY_YIELD) | - (1 << PY_MONITORING_EVENT_CALL) | (1 << PY_MONITORING_EVENT_PY_UNWIND); + (1 << PY_MONITORING_EVENT_CALL) | (1 << PY_MONITORING_EVENT_PY_UNWIND) | + (1 << PY_MONITORING_EVENT_PY_THROW); } return _PyMonitoring_SetEvents(PY_MONITORING_SYS_PROFILE_ID, events); } |