Home | History | Annotate | Download | only in Objects

Lines Matching full:f_lineno

67         return f->f_lineno;
78 /* Setter for f_lineno - you can set f_lineno from within a trace function in
96 int new_lineno = 0; /* The new value of f_lineno */
118 /* f_lineno must be an integer. */
130 "f_lineno can only be set by a"
345 /* Finally set the new f_lineno and f_lasti and return OK. */
346 f->f_lineno = new_lineno;
367 /* We rely on f_lineno being accurate when f_trace is set. */
368 f->f_lineno = PyFrame_GetLineNumber(f);
386 {"f_lineno", (getter)frame_getlineno,
739 f->f_lineno = code->co_firstlineno;