Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dsymtable.h31 PyObject *ste_children; /* list of child ids */ member
/external/python/cpython2/Python/
Dsymtable.c43 ste->ste_children = NULL; in ste_new()
53 ste->ste_children = PyList_New(0); in ste_new()
54 if (ste->ste_children == NULL) in ste_new()
104 Py_XDECREF(ste->ste_children); in ste_dealloc()
115 {"children", T_OBJECT, OFF(ste_children), READONLY},
696 for (i = 0; i < PyList_GET_SIZE(ste->ste_children); ++i) { in analyze_block()
697 PyObject *c = PyList_GET_ITEM(ste->ste_children, i); in analyze_block()
856 if (PyList_Append(prev->ste_children, in symtable_enter_block()