Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Dsymtable.c41 ste->ste_symbols = NULL; in ste_new()
45 ste->ste_symbols = PyDict_New(); in ste_new()
46 if (ste->ste_symbols == NULL) in ste_new()
102 Py_XDECREF(ste->ste_symbols); in ste_dealloc()
113 {"symbols", T_OBJECT, OFF(ste_symbols), READONLY},
309 PyObject *v = PyDict_GetItem(ste->ste_symbols, name); in PyST_GetScope()
667 while (PyDict_Next(ste->ste_symbols, &pos, &name, &v)) { in analyze_block()
712 if (!update_symbols(ste->ste_symbols, scope, bound, newfree, in analyze_block()
854 st->st_global = st->st_cur->ste_symbols; in symtable_enter_block()
871 o = PyDict_GetItem(st->st_cur->ste_symbols, mangled); in symtable_lookup()
[all …]
Dcompile.c485 u->u_cellvars = dictbytype(u->u_ste->ste_symbols, CELL, 0, 0); in compiler_enter_scope()
491 u->u_freevars = dictbytype(u->u_ste->ste_symbols, FREE, DEF_FREE_CLASS, in compiler_enter_scope()
1235 PyString_AS_STRING(PyObject_Repr(c->u->u_ste->ste_symbols)), in get_ref_type()
/external/python/cpython2/Include/
Dsymtable.h28 PyObject *ste_symbols; /* dict: name to flags */ member