Home
last modified time | relevance | path

Searched refs:f_trace (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Objects/
Dframeobject.c38 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()
/third_party/python/Include/cpython/
Dframeobject.h29 PyObject *f_trace; /* Trace function */ member
/third_party/python/Lib/
Dbdb.py306 if caller_frame and not caller_frame.f_trace:
307 caller_frame.f_trace = self.trace_dispatch
330 frame.f_trace = self.trace_dispatch
348 del frame.f_trace
/third_party/python/Lib/test/
Dtest_sys_settrace.py181 sys._getframe().f_back.f_trace = tracefunc
189 sys._getframe().f_back.f_trace = tracefunc
478 sys._getframe().f_trace = None
/third_party/python/Python/
Dsysmodule.c981 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()
/third_party/python/Tools/gdb/
Dlibpython.py935 f_trace = self.field('f_trace')
936 if long(f_trace) != 0:
/third_party/python/Doc/library/
Dinspect.rst141 | | f_trace | tracing function for this |
Dsys.rst1401 assigning ``frame.f_trace = tracefunc`` explicitly, rather than relying on
/third_party/python/Doc/reference/
Ddatamodel.rst1009 single: f_trace (frame attribute)
1014 Special writable attributes: :attr:`f_trace`, if not ``None``, is a function
/third_party/python/Misc/
DNEWS5201 - 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 by
21989 - bpo-20041: Fixed TypeError when frame.f_trace is set to None. Patch by