Searched refs:ste_directives (Results 1 – 2 of 2) sorted by relevance
51 PyObject *ste_directives;/* locations of global and nonlocal statements */ member
84 ste->ste_directives = NULL; in ste_new()145 Py_XDECREF(ste->ste_directives); in ste_dealloc()423 assert(ste->ste_directives); in error_at_directive()424 for (i = 0; i < PyList_GET_SIZE(ste->ste_directives); i++) { in error_at_directive()425 data = PyList_GET_ITEM(ste->ste_directives, i); in error_at_directive()1182 if (!st->st_cur->ste_directives) { in symtable_record_directive()1183 st->st_cur->ste_directives = PyList_New(0); in symtable_record_directive()1184 if (!st->st_cur->ste_directives) in symtable_record_directive()1193 res = PyList_Append(st->st_cur->ste_directives, data); in symtable_record_directive()