Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
DPython-ast.c268 static PyTypeObject *YieldFrom_type; variable
940 YieldFrom_type = make_type("YieldFrom", expr_type, YieldFrom_fields, 1); in init_types()
941 if (!YieldFrom_type) return 0; in init_types()
3240 result = PyType_GenericNew(YieldFrom_type, NULL, NULL); in ast2obj_expr()
6413 isinstance = PyObject_IsInstance(obj, (PyObject*)YieldFrom_type); in obj2ast_expr()
8242 if (PyDict_SetItemString(d, "YieldFrom", (PyObject*)YieldFrom_type) < 0) in PyInit__ast()