Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dsymtable.h44 PyObject *ste_directives;/* locations of global and nonlocal statements */ member
/external/python/cpython3/Python/
Dsymtable.c63 ste->ste_directives = NULL; in ste_new()
119 Py_XDECREF(ste->ste_directives); in ste_dealloc()
387 assert(ste->ste_directives); in error_at_directive()
388 for (i = 0; i < PyList_GET_SIZE(ste->ste_directives); i++) { in error_at_directive()
389 data = PyList_GET_ITEM(ste->ste_directives, i); in error_at_directive()
1093 if (!st->st_cur->ste_directives) { in symtable_record_directive()
1094 st->st_cur->ste_directives = PyList_New(0); in symtable_record_directive()
1095 if (!st->st_cur->ste_directives) in symtable_record_directive()
1104 res = PyList_Append(st->st_cur->ste_directives, data); in symtable_record_directive()