Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
DPython-ast.c107 static PyTypeObject *AsyncFor_type; variable
878 AsyncFor_type = make_type("AsyncFor", stmt_type, AsyncFor_fields, 4); in init_types()
879 if (!AsyncFor_type) return 0; in init_types()
2820 result = PyType_GenericNew(AsyncFor_type, NULL, NULL); in ast2obj_stmt()
4864 isinstance = PyObject_IsInstance(obj, (PyObject*)AsyncFor_type); in obj2ast_stmt()
8190 if (PyDict_SetItemString(d, "AsyncFor", (PyObject*)AsyncFor_type) < 0) in PyInit__ast()