Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
DPython-ast.c133 static PyTypeObject *AsyncWith_type; variable
886 AsyncWith_type = make_type("AsyncWith", stmt_type, AsyncWith_fields, 2); in init_types()
887 if (!AsyncWith_type) return 0; in init_types()
2896 result = PyType_GenericNew(AsyncWith_type, NULL, NULL); in ast2obj_stmt()
5208 isinstance = PyObject_IsInstance(obj, (PyObject*)AsyncWith_type); in obj2ast_stmt()
8196 if (PyDict_SetItemString(d, "AsyncWith", (PyObject*)AsyncWith_type) < 0) in PyInit__ast()