Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dframeobject.c381 if (!f->f_trace) { in frame_setlineno()
501 PyObject* trace = f->f_trace; in frame_gettrace()
518 Py_XSETREF(f->f_trace, v); in frame_settrace()
601 Py_CLEAR(f->f_trace); in frame_dealloc()
644 Py_VISIT(f->f_trace); in frame_traverse()
669 Py_CLEAR(f->f_trace); in frame_tp_clear()
848 f->f_trace = NULL; in _PyFrame_New_NoTrack()
/third_party/python/Include/cpython/
Dframeobject.h36 PyObject *f_trace; /* Trace function */ member
/third_party/python/Lib/
Dbdb.py308 if caller_frame and not caller_frame.f_trace:
309 caller_frame.f_trace = self.trace_dispatch
332 frame.f_trace = self.trace_dispatch
350 del frame.f_trace
/third_party/python/Lib/test/
Dtest_frame.py106 sys._getframe(0).f_trace = True
Dtest_sys_settrace.py183 sys._getframe().f_back.f_trace = tracefunc
191 sys._getframe().f_back.f_trace = tracefunc
483 sys._getframe().f_trace = None
/third_party/python/Python/
Dsysmodule.c1000 callback = frame->f_trace; in trace_trampoline()
1010 Py_CLEAR(frame->f_trace); in trace_trampoline()
1015 Py_XSETREF(frame->f_trace, result); in trace_trampoline()
/third_party/python/Tools/gdb/
Dlibpython.py944 f_trace = self.field('f_trace')
945 if long(f_trace) != 0:
/third_party/python/Misc/NEWS.d/
D3.10.0a5.rst132 frame.f_lineno is correct even if frame.f_trace is set to True
D3.5.2rc1.rst17 Fixed TypeError when frame.f_trace is set to None. Patch by Xavier de Gaye.
D3.6.0a1.rst7 Fixed TypeError when frame.f_trace is set to None. Patch by Xavier de Gaye.
D3.9.0a1.rst3717 Mention ``frame.f_trace`` in :func:`sys.settrace` docs.
/third_party/python/Doc/library/
Dinspect.rst143 | | f_trace | tracing function for this |
Dsys.rst1403 assigning ``frame.f_trace = tracefunc`` explicitly, rather than relying on
/third_party/python/Doc/reference/
Ddatamodel.rst1045 single: f_trace (frame attribute)
1050 Special writable attributes: :attr:`f_trace`, if not ``None``, is a function