Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
DPython-ast.c336 static PyTypeObject *Eq_type; variable
909 Eq_type = make_type("Eq", cmpop_type, NULL, 0); in init_types()
910 if (!Eq_type) return 0; in init_types()
911 Eq_singleton = PyType_GenericNew(Eq_type, NULL, NULL); in init_types()
6319 isinstance = PyObject_IsInstance(obj, (PyObject *)Eq_type); in obj2ast_cmpop()
6898 if (PyDict_SetItemString(d, "Eq", (PyObject*)Eq_type) < 0) return; in init_ast()
/external/python/cpython3/Python/
DPython-ast.c425 static PyTypeObject *Eq_type; variable
1100 Eq_type = make_type("Eq", cmpop_type, NULL, 0); in init_types()
1101 if (!Eq_type) return 0; in init_types()
1102 Eq_singleton = PyType_GenericNew(Eq_type, NULL, NULL); in init_types()
7510 isinstance = PyObject_IsInstance(obj, (PyObject *)Eq_type); in obj2ast_cmpop()
8326 if (PyDict_SetItemString(d, "Eq", (PyObject*)Eq_type) < 0) return NULL; in PyInit__ast()