Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dsymtable.h17 PyObject *st_symbols; /* dictionary of symbol table entries */ member
/external/python/cpython2/Python/
Dsymtable.c75 if (PyDict_SetItem(st->st_symbols, ste->ste_id, (PyObject *)ste) < 0) in ste_new()
204 st->st_symbols = NULL; in symtable_new()
208 if ((st->st_symbols = PyDict_New()) == NULL) in symtable_new()
279 Py_XDECREF(st->st_symbols); in PySymtable_Free()
292 v = PyDict_GetItem(st->st_symbols, k); in PySymtable_Lookup()