Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
DPython-ast.c338 static PyTypeObject *Lt_type; variable
917 Lt_type = make_type("Lt", cmpop_type, NULL, 0); in init_types()
918 if (!Lt_type) return 0; in init_types()
919 Lt_singleton = PyType_GenericNew(Lt_type, NULL, NULL); in init_types()
6335 isinstance = PyObject_IsInstance(obj, (PyObject *)Lt_type); in obj2ast_cmpop()
6900 if (PyDict_SetItemString(d, "Lt", (PyObject*)Lt_type) < 0) return; in init_ast()
/external/python/cpython3/Python/
DPython-ast.c427 static PyTypeObject *Lt_type; variable
1108 Lt_type = make_type("Lt", cmpop_type, NULL, 0); in init_types()
1109 if (!Lt_type) return 0; in init_types()
1110 Lt_singleton = PyType_GenericNew(Lt_type, NULL, NULL); in init_types()
7526 isinstance = PyObject_IsInstance(obj, (PyObject *)Lt_type); in obj2ast_cmpop()
8329 if (PyDict_SetItemString(d, "Lt", (PyObject*)Lt_type) < 0) return NULL; in PyInit__ast()