Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
DPython-ast.c344 static PyTypeObject *In_type; variable
941 In_type = make_type("In", cmpop_type, NULL, 0); in init_types()
942 if (!In_type) return 0; in init_types()
943 In_singleton = PyType_GenericNew(In_type, NULL, NULL); in init_types()
6383 isinstance = PyObject_IsInstance(obj, (PyObject *)In_type); in obj2ast_cmpop()
6906 if (PyDict_SetItemString(d, "In", (PyObject*)In_type) < 0) return; in init_ast()
/external/python/cpython3/Python/
DPython-ast.c433 static PyTypeObject *In_type; variable
1132 In_type = make_type("In", cmpop_type, NULL, 0); in init_types()
1133 if (!In_type) return 0; in init_types()
1134 In_singleton = PyType_GenericNew(In_type, NULL, NULL); in init_types()
7574 isinstance = PyObject_IsInstance(obj, (PyObject *)In_type); in obj2ast_cmpop()
8336 if (PyDict_SetItemString(d, "In", (PyObject*)In_type) < 0) return NULL; in PyInit__ast()