Home | History | Annotate | Download | only in Objects

Lines Matching full:f_lineno

34         return f->f_lineno;
45 /* Setter for f_lineno - you can set f_lineno from within a trace function in
63 int new_lineno = 0; /* The new value of f_lineno */
87 /* f_lineno must be an integer. */
99 "f_lineno can only be set by a"
322 /* Finally set the new f_lineno and f_lasti and return OK. */
323 f->f_lineno = new_lineno;
344 /* We rely on f_lineno being accurate when f_trace is set. */
345 f->f_lineno = PyFrame_GetLineNumber(f);
358 {"f_lineno", (getter)frame_getlineno,
725 f->f_lineno = code->co_firstlineno;