HomeSort by relevance Sort by last modified time
    Searched refs:Nonlocal (Results 1 - 5 of 5) sorted by null

  /external/python/cpython3/Include/
Python-ast.h 196 } Nonlocal;
513 #define Nonlocal(a0, a1, a2, a3) _Py_Nonlocal(a0, a1, a2, a3)
  /external/python/cpython3/Lib/test/
test_ast.py 766 self.stmt(ast.Nonlocal([]), "empty names on Nonlocal")
    [all...]
  /external/python/cpython3/Python/
symtable.c 12 "name '%U' is assigned to before nonlocal declaration"
18 "name '%U' is used prior to nonlocal declaration"
24 "annotated name '%U' can't be nonlocal"
420 Names which are explicitly declared nonlocal must exist in this set of
472 "name '%U' is nonlocal and global",
486 "name '%U' is parameter and nonlocal",
492 "nonlocal declaration not allowed at module level");
497 "no binding for nonlocal '%U' found",
    [all...]
ast.c 497 return validate_nonempty_seq(stmt->v.Nonlocal.names, "names", "Nonlocal");
    [all...]
Python-ast.c 912 Nonlocal_type = make_type("Nonlocal", stmt_type, Nonlocal_fields, 1);
    [all...]

Completed in 173 milliseconds