Home
last modified time | relevance | path

Searched defs:_symtable_entry (Results 1 – 1 of 1) sorted by relevance

/third_party/python/Include/internal/
Dpycore_symtable.h44 typedef struct _symtable_entry { struct
46 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 …]