Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
DPython-ast.c337 static PyTypeObject *NotEq_type; variable
913 NotEq_type = make_type("NotEq", cmpop_type, NULL, 0); in init_types()
914 if (!NotEq_type) return 0; in init_types()
915 NotEq_singleton = PyType_GenericNew(NotEq_type, NULL, NULL); in init_types()
6327 isinstance = PyObject_IsInstance(obj, (PyObject *)NotEq_type); in obj2ast_cmpop()
6899 if (PyDict_SetItemString(d, "NotEq", (PyObject*)NotEq_type) < 0) return; in init_ast()
/external/python/cpython3/Python/
DPython-ast.c426 static PyTypeObject *NotEq_type; variable
1104 NotEq_type = make_type("NotEq", cmpop_type, NULL, 0); in init_types()
1105 if (!NotEq_type) return 0; in init_types()
1106 NotEq_singleton = PyType_GenericNew(NotEq_type, NULL, NULL); in init_types()
7518 isinstance = PyObject_IsInstance(obj, (PyObject *)NotEq_type); in obj2ast_cmpop()
8327 if (PyDict_SetItemString(d, "NotEq", (PyObject*)NotEq_type) < 0) return in PyInit__ast()