Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
DPython-ast.c343 static PyTypeObject *IsNot_type; variable
937 IsNot_type = make_type("IsNot", cmpop_type, NULL, 0); in init_types()
938 if (!IsNot_type) return 0; in init_types()
939 IsNot_singleton = PyType_GenericNew(IsNot_type, NULL, NULL); in init_types()
6375 isinstance = PyObject_IsInstance(obj, (PyObject *)IsNot_type); in obj2ast_cmpop()
6905 if (PyDict_SetItemString(d, "IsNot", (PyObject*)IsNot_type) < 0) return; in init_ast()
/external/python/cpython3/Python/
DPython-ast.c432 static PyTypeObject *IsNot_type; variable
1128 IsNot_type = make_type("IsNot", cmpop_type, NULL, 0); in init_types()
1129 if (!IsNot_type) return 0; in init_types()
1130 IsNot_singleton = PyType_GenericNew(IsNot_type, NULL, NULL); in init_types()
7566 isinstance = PyObject_IsInstance(obj, (PyObject *)IsNot_type); in obj2ast_cmpop()
8334 if (PyDict_SetItemString(d, "IsNot", (PyObject*)IsNot_type) < 0) return in PyInit__ast()