Home
last modified time | relevance | path

Searched refs:Nonlocal (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Parser/
DPython.asdl50 | Nonlocal(identifier* names)
/external/python/cpython3/Include/
DPython-ast.h196 } Nonlocal; member
513 #define Nonlocal(a0, a1, a2, a3) _Py_Nonlocal(a0, a1, a2, a3) macro
/external/python/cpython3/Lib/test/
Dtest_ast.py826 self.stmt(ast.Nonlocal([]), "empty names on Nonlocal")
/external/python/cpython3/Python/
Dsymtable.c1293 asdl_seq *seq = s->v.Nonlocal.names; in symtable_visit_stmt()
DPython-ast.c1668 Nonlocal(asdl_seq * names, int lineno, int col_offset, PyArena *arena) in Nonlocal() function
1675 p->v.Nonlocal.names = names; in Nonlocal()
3001 value = ast2obj_list(o->v.Nonlocal.names, ast2obj_identifier); in ast2obj_stmt()
5679 *out = Nonlocal(names, lineno, col_offset, arena); in obj2ast_stmt()
Dast.c498 return validate_nonempty_seq(stmt->v.Nonlocal.names, "names", "Nonlocal"); in validate_stmt()
3425 return Nonlocal(s, LINENO(n), n->n_col_offset, c->c_arena); in ast_for_nonlocal_stmt()