Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
DPython-ast.c177 static PyTypeObject *Nonlocal_type; variable
900 Nonlocal_type = make_type("Nonlocal", stmt_type, Nonlocal_fields, 1); in init_types()
901 if (!Nonlocal_type) return 0; in init_types()
2999 result = PyType_GenericNew(Nonlocal_type, NULL, NULL); in ast2obj_stmt()
5642 isinstance = PyObject_IsInstance(obj, (PyObject*)Nonlocal_type); in obj2ast_stmt()
8209 if (PyDict_SetItemString(d, "Nonlocal", (PyObject*)Nonlocal_type) < 0) in PyInit__ast()