Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
DPython-ast.c278 static PyTypeObject *Store_type; variable
794 Store_type = make_type("Store", expr_context_type, NULL, 0); in init_types()
795 if (!Store_type) return 0; in init_types()
796 Store_singleton = PyType_GenericNew(Store_type, NULL, NULL); in init_types()
5936 isinstance = PyObject_IsInstance(obj, (PyObject *)Store_type); in obj2ast_expr_context()
6853 if (PyDict_SetItemString(d, "Store", (PyObject*)Store_type) < 0) return; in init_ast()
/external/python/cpython3/Python/
DPython-ast.c363 static PyTypeObject *Store_type; variable
983 Store_type = make_type("Store", expr_context_type, NULL, 0); in init_types()
984 if (!Store_type) return 0; in init_types()
985 Store_singleton = PyType_GenericNew(Store_type, NULL, NULL); in init_types()
7143 isinstance = PyObject_IsInstance(obj, (PyObject *)Store_type); in obj2ast_expr_context()
8274 if (PyDict_SetItemString(d, "Store", (PyObject*)Store_type) < 0) return in PyInit__ast()