Searched defs:_symtable_entry (Results 1 – 2 of 2) sorted by relevance
44 typedef struct _symtable_entry { struct46 PyObject *ste_id; /* int: key in ste_table->st_blocks */47 PyObject *ste_symbols; /* dict: variable names to flags */48 PyObject *ste_name; /* string: name of current block */49 PyObject *ste_varnames; /* list of function parameters */50 PyObject *ste_children; /* list of child blocks */51 PyObject *ste_directives;/* locations of global and nonlocal statements */52 _Py_block_ty ste_type; /* module, class or function */53 int ste_nested; /* true if block is nested */54 unsigned ste_free : 1; /* true if block has free variables */[all …]
25 typedef struct _symtable_entry { struct27 PyObject *ste_id; /* int: key in st_symbols */28 PyObject *ste_symbols; /* dict: name to flags */29 PyObject *ste_name; /* string: name of block */30 PyObject *ste_varnames; /* list of variable names */31 PyObject *ste_children; /* list of child ids */32 _Py_block_ty ste_type; /* module, class, or function */33 int ste_unoptimized; /* false if namespace is optimized */34 int ste_nested; /* true if block is nested */35 unsigned ste_free : 1; /* true if block has free variables */[all …]