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 826 self.stmt(ast.Nonlocal([]), "empty names on Nonlocal")
    [all...]
  /external/python/cpython3/Python/
symtable.c 16 "name '%U' is parameter and nonlocal"
22 "name '%U' is assigned to before nonlocal declaration"
28 "name '%U' is used prior to nonlocal declaration"
34 "annotated name '%U' can't be nonlocal"
431 Names which are explicitly declared nonlocal must exist in this set of
477 "name '%U' is nonlocal and global",
491 "nonlocal declaration not allowed at module level");
496 "no binding for nonlocal '%U' found",
    [all...]
Python-ast.c 900 Nonlocal_type = make_type("Nonlocal", stmt_type, Nonlocal_fields, 1);
    [all...]
ast.c 498 return validate_nonempty_seq(stmt->v.Nonlocal.names, "names", "Nonlocal");
    [all...]

Completed in 95 milliseconds