Searched refs:GtE_type (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | Python-ast.c | 341 static PyTypeObject *GtE_type; variable 929 GtE_type = make_type("GtE", cmpop_type, NULL, 0); in init_types() 930 if (!GtE_type) return 0; in init_types() 931 GtE_singleton = PyType_GenericNew(GtE_type, NULL, NULL); in init_types() 6359 isinstance = PyObject_IsInstance(obj, (PyObject *)GtE_type); in obj2ast_cmpop() 6903 if (PyDict_SetItemString(d, "GtE", (PyObject*)GtE_type) < 0) return; in init_ast()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 430 static PyTypeObject *GtE_type; variable 1120 GtE_type = make_type("GtE", cmpop_type, NULL, 0); in init_types() 1121 if (!GtE_type) return 0; in init_types() 1122 GtE_singleton = PyType_GenericNew(GtE_type, NULL, NULL); in init_types() 7550 isinstance = PyObject_IsInstance(obj, (PyObject *)GtE_type); in obj2ast_cmpop() 8332 if (PyDict_SetItemString(d, "GtE", (PyObject*)GtE_type) < 0) return NULL; in PyInit__ast()
|