Searched defs:_symtable_entry (Results 1 – 2 of 2) sorted by relevance
37 typedef struct _symtable_entry { struct39 PyObject *ste_id; /* int: key in ste_table->st_blocks */40 PyObject *ste_symbols; /* dict: variable names to flags */41 PyObject *ste_name; /* string: name of current block */42 PyObject *ste_varnames; /* list of function parameters */43 PyObject *ste_children; /* list of child blocks */44 PyObject *ste_directives;/* locations of global and nonlocal statements */45 _Py_block_ty ste_type; /* module, class, or function */46 int ste_nested; /* true if block is nested */47 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 …]