Home
last modified time | relevance | path

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

/third_party/python/Include/internal/
Dpycore_symtable.h76 } PySTEntryObject; typedef
82 extern int _PyST_GetScope(PySTEntryObject *, PyObject *);
88 PyAPI_FUNC(PySTEntryObject *) PySymtable_Lookup(struct symtable *, void *);
/third_party/python/Python/
Dsymtable.c58 static PySTEntryObject *
63 PySTEntryObject *ste = NULL; in ste_new()
69 ste = PyObject_New(PySTEntryObject, &PySTEntry_Type); in ste_new()
129 ste_repr(PySTEntryObject *ste) in ste_repr()
137 ste_dealloc(PySTEntryObject *ste) in ste_dealloc()
149 #define OFF(x) offsetof(PySTEntryObject, x)
166 sizeof(PySTEntryObject),
379 PySTEntryObject *
398 return (PySTEntryObject *)v; in PySymtable_Lookup()
402 _PyST_GetSymbol(PySTEntryObject *ste, PyObject *name) in _PyST_GetSymbol()
[all …]
Dcompile.c170 PySTEntryObject *u_ste;
6807 PySTEntryObject *ste = c->u->u_ste; in compute_code_flags()