Searched refs:LtE_type (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | Python-ast.c | 339 static PyTypeObject *LtE_type; variable 921 LtE_type = make_type("LtE", cmpop_type, NULL, 0); in init_types() 922 if (!LtE_type) return 0; in init_types() 923 LtE_singleton = PyType_GenericNew(LtE_type, NULL, NULL); in init_types() 6343 isinstance = PyObject_IsInstance(obj, (PyObject *)LtE_type); in obj2ast_cmpop() 6901 if (PyDict_SetItemString(d, "LtE", (PyObject*)LtE_type) < 0) return; in init_ast()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 428 static PyTypeObject *LtE_type; variable 1112 LtE_type = make_type("LtE", cmpop_type, NULL, 0); in init_types() 1113 if (!LtE_type) return 0; in init_types() 1114 LtE_singleton = PyType_GenericNew(LtE_type, NULL, NULL); in init_types() 7534 isinstance = PyObject_IsInstance(obj, (PyObject *)LtE_type); in obj2ast_cmpop() 8330 if (PyDict_SetItemString(d, "LtE", (PyObject*)LtE_type) < 0) return NULL; in PyInit__ast()
|