Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dsymtable.h45 PyObject *ste_directives;/* locations of global and nonlocal statements */ member
/external/python/cpython3/Python/
Dsymtable.c71 ste->ste_directives = NULL; in ste_new()
130 Py_XDECREF(ste->ste_directives); in ste_dealloc()
414 assert(ste->ste_directives); in error_at_directive()
415 for (i = 0; i < PyList_GET_SIZE(ste->ste_directives); i++) { in error_at_directive()
416 data = PyList_GET_ITEM(ste->ste_directives, i); in error_at_directive()
1153 if (!st->st_cur->ste_directives) { in symtable_record_directive()
1154 st->st_cur->ste_directives = PyList_New(0); in symtable_record_directive()
1155 if (!st->st_cur->ste_directives) in symtable_record_directive()
1164 res = PyList_Append(st->st_cur->ste_directives, data); in symtable_record_directive()