Lines Matching defs:trace
626 /* Setter for f_lineno - you can set f_lineno from within a trace function in
636 * o Jumps cannot be made from within a trace function invoked with a
658 * Jumps are forbidden on a 'return' trace event (except after a yield).
659 * Jumps from 'call' trace events are also forbidden.
666 "can only jump from a 'line' trace event");
670 "can't jump from the 'call' trace event of a new frame");
681 "can only jump from a 'line' trace event");
686 "f_lineno can only be set by a trace function");
803 PyObject* trace = f->f_trace;
805 if (trace == NULL)
806 trace = Py_None;
808 Py_INCREF(trace);
810 return trace;