Searched refs:f_trace (Results 1 – 10 of 10) sorted by relevance
38 if (f->f_trace) { in PyFrame_GetLineNumber()358 if (!f->f_trace) { in frame_setlineno()485 PyObject* trace = f->f_trace; in frame_gettrace()504 Py_XSETREF(f->f_trace, v); in frame_settrace()592 Py_CLEAR(f->f_trace); in frame_dealloc()630 Py_VISIT(f->f_trace); in frame_traverse()659 Py_CLEAR(f->f_trace); in frame_tp_clear()818 f->f_trace = NULL; in frame_alloc()
29 PyObject *f_trace; /* Trace function */ member
306 if caller_frame and not caller_frame.f_trace:307 caller_frame.f_trace = self.trace_dispatch330 frame.f_trace = self.trace_dispatch348 del frame.f_trace
181 sys._getframe().f_back.f_trace = tracefunc189 sys._getframe().f_back.f_trace = tracefunc478 sys._getframe().f_trace = None
981 callback = frame->f_trace; in trace_trampoline()991 Py_CLEAR(frame->f_trace); in trace_trampoline()996 Py_XSETREF(frame->f_trace, result); in trace_trampoline()
935 f_trace = self.field('f_trace')936 if long(f_trace) != 0:
141 | | f_trace | tracing function for this |
1401 assigning ``frame.f_trace = tracefunc`` explicitly, rather than relying on
1009 single: f_trace (frame attribute)1014 Special writable attributes: :attr:`f_trace`, if not ``None``, is a function
5201 - bpo-37937: Mention ``frame.f_trace`` in :func:`sys.settrace` docs.19487 - bpo-20041: Fixed TypeError when frame.f_trace is set to None. Patch by21989 - bpo-20041: Fixed TypeError when frame.f_trace is set to None. Patch by