Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
DPython-ast.c281 static PyTypeObject *AugStore_type; variable
806 AugStore_type = make_type("AugStore", expr_context_type, NULL, 0); in init_types()
807 if (!AugStore_type) return 0; in init_types()
808 AugStore_singleton = PyType_GenericNew(AugStore_type, NULL, NULL); in init_types()
5960 isinstance = PyObject_IsInstance(obj, (PyObject *)AugStore_type); in obj2ast_expr_context()
6857 if (PyDict_SetItemString(d, "AugStore", (PyObject*)AugStore_type) < 0) in init_ast()
/external/python/cpython3/Python/
DPython-ast.c366 static PyTypeObject *AugStore_type; variable
995 AugStore_type = make_type("AugStore", expr_context_type, NULL, 0); in init_types()
996 if (!AugStore_type) return 0; in init_types()
997 AugStore_singleton = PyType_GenericNew(AugStore_type, NULL, NULL); in init_types()
7167 isinstance = PyObject_IsInstance(obj, (PyObject *)AugStore_type); in obj2ast_expr_context()
8279 if (PyDict_SetItemString(d, "AugStore", (PyObject*)AugStore_type) < 0) in PyInit__ast()