Home
last modified time | relevance | path

Searched refs:st_stack (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Include/
Dsymtable.h18 PyObject *st_stack; /* stack of namespace info */ member
/external/python/cpython2/Python/
Dsymtable.c206 if ((st->st_stack = PyList_New(0)) == NULL) in symtable_new()
280 Py_XDECREF(st->st_stack); in PySymtable_Free()
824 end = PyList_GET_SIZE(st->st_stack) - 1; in symtable_exit_block()
826 st->st_cur = (PySTEntryObject *)PyList_GET_ITEM(st->st_stack, in symtable_exit_block()
831 if (PySequence_DelItem(st->st_stack, end) < 0) in symtable_exit_block()
845 if (PyList_Append(st->st_stack, (PyObject *)st->st_cur) < 0) { in symtable_enter_block()