Lines Matching defs:_frame
16 typedef struct _frame { struct
18 struct _frame *f_back; /* previous frame, or NULL */ argument
19 PyCodeObject *f_code; /* code segment */
20 PyObject *f_builtins; /* builtin symbol table (PyDictObject) */
21 PyObject *f_globals; /* global symbol table (PyDictObject) */
22 PyObject *f_locals; /* local symbol table (any mapping) */
23 PyObject **f_valuestack; /* points after the last local */
27 PyObject **f_stacktop;
28 PyObject *f_trace; /* Trace function */
37 PyObject *f_exc_type, *f_exc_value, *f_exc_traceback;
39 PyThreadState *f_tstate;
40 int f_lasti; /* Last instruction if called */
46 int f_lineno; /* Current line number */
47 int f_iblock; /* index in f_blockstack */
48 PyTryBlock f_blockstack[CO_MAXBLOCKS]; /* for try and loop blocks */
49 PyObject *f_localsplus[1]; /* locals+stack, dynamically sized */