Home
last modified time | relevance | path

Searched refs:ste_symbols (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Include/internal/
Dpycore_symtable.h47 PyObject *ste_symbols; /* dict: variable names to flags */ member
/third_party/python/Python/
Dsymtable.c80 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},
404 PyObject *v = PyDict_GetItemWithError(ste->ste_symbols, name); in _PyST_GetSymbol()
805 while (PyDict_Next(ste->ste_symbols, &pos, &name, &v)) { in analyze_block()
875 if (!update_symbols(ste->ste_symbols, scopes, bound, newfree, in analyze_block()
1012 st->st_global = st->st_cur->ste_symbols; in symtable_enter_block()
1045 dict = ste->ste_symbols; in symtable_add_def_helper()
[all …]
Dcompile.c632 u->u_cellvars = dictbytype(u->u_ste->ste_symbols, CELL, 0, 0); in compiler_enter_scope()
656 u->u_freevars = dictbytype(u->u_ste->ste_symbols, FREE, DEF_FREE_CLASS, in compiler_enter_scope()
1999 c->u->u_ste->ste_symbols, c->u->u_varnames, c->u->u_names); in get_ref_type()