Home | History | Annotate | Download | only in python2.7

Lines Matching refs:PyObject

17     PyObject *st_symbols;    /* dictionary of symbol table entries */
18 PyObject *st_stack; /* stack of namespace info */
19 PyObject *st_global; /* borrowed ref to MODULE in st_symbols */
21 PyObject *st_private; /* name of current class or NULL */
27 PyObject *ste_id; /* int: key in st_symbols */
28 PyObject *ste_symbols; /* dict: name to flags */
29 PyObject *ste_name; /* string: name of block */
30 PyObject *ste_varnames; /* list of variable names */
31 PyObject *ste_children; /* list of child ids */
53 PyAPI_FUNC(int) PyST_GetScope(PySTEntryObject *, PyObject *);