mirror of
https://github.com/python/cpython.git
synced 2025-07-16 07:45:20 +00:00
[3.13] gh-121814: Only check f_trace_opcodes if Python frame exists (GH-121818) (#121861)
gh-121814: Only check f_trace_opcodes if Python frame exists (GH-121818)
(cherry picked from commit 2b1b68939b
)
Co-authored-by: Tian Gao <gaogaotiantian@hotmail.com>
Co-authored-by: Matt Wozniski <godlygeek@gmail.com>
This commit is contained in:
parent
c11d789a4c
commit
54db42fe2c
2 changed files with 2 additions and 1 deletions
|
@ -605,7 +605,7 @@ _PyEval_SetTrace(PyThreadState *tstate, Py_tracefunc func, PyObject *arg)
|
|||
(1 << PY_MONITORING_EVENT_STOP_ITERATION);
|
||||
|
||||
PyFrameObject* frame = PyEval_GetFrame();
|
||||
if (frame->f_trace_opcodes) {
|
||||
if (frame && frame->f_trace_opcodes) {
|
||||
int ret = _PyEval_SetOpcodeTrace(frame, true);
|
||||
if (ret != 0) {
|
||||
return ret;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue