Searched refs:ste_symbols (Results 1 - 3 of 3) sorted by relevance
/third_party/python/Include/internal/ |
H A D | pycore_symtable.h | 33 PyObject *st_global; /* borrowed ref to st_top->ste_symbols */ 47 PyObject *ste_symbols; /* dict: variable names to flags */ member 110 It is stored in ste_symbols at bits 12-15.
|
/third_party/python/Python/ |
H A D | symtable.c | 80 ste->ste_symbols = NULL; in ste_new() 111 ste->ste_symbols = PyDict_New(); in ste_new() 114 if (ste->ste_symbols == NULL in ste_new() 142 Py_XDECREF(ste->ste_symbols); in ste_dealloc() 154 {"symbols", T_OBJECT, OFF(ste_symbols), READONLY}, 397 PyObject *v = PyDict_GetItemWithError(ste->ste_symbols, name); in _PyST_GetSymbol() 622 /* Enter the final scope information into the ste_symbols dict. 796 while (PyDict_Next(ste->ste_symbols, &pos, &name, &v)) { in analyze_block() 864 if (!update_symbols(ste->ste_symbols, scopes, bound, newfree, in analyze_block() 1001 st->st_global = st->st_cur->ste_symbols; in symtable_enter_block() [all...] |
H A D | compile.c | 1739 u->u_cellvars = dictbytype(u->u_ste->ste_symbols, CELL, 0, 0); in compiler_enter_scope() 1757 u->u_freevars = dictbytype(u->u_ste->ste_symbols, FREE, DEF_FREE_CLASS, in compiler_enter_scope() 2240 c->u->u_ste->ste_symbols, c->u->u_varnames, c->u->u_names); in get_ref_type()
|
Completed in 14 milliseconds