Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
DPython-ast.c340 static PyTypeObject *Gt_type; variable
925 Gt_type = make_type("Gt", cmpop_type, NULL, 0); in init_types()
926 if (!Gt_type) return 0; in init_types()
927 Gt_singleton = PyType_GenericNew(Gt_type, NULL, NULL); in init_types()
6351 isinstance = PyObject_IsInstance(obj, (PyObject *)Gt_type); in obj2ast_cmpop()
6902 if (PyDict_SetItemString(d, "Gt", (PyObject*)Gt_type) < 0) return; in init_ast()
/external/python/cpython3/Python/
DPython-ast.c429 static PyTypeObject *Gt_type; variable
1116 Gt_type = make_type("Gt", cmpop_type, NULL, 0); in init_types()
1117 if (!Gt_type) return 0; in init_types()
1118 Gt_singleton = PyType_GenericNew(Gt_type, NULL, NULL); in init_types()
7542 isinstance = PyObject_IsInstance(obj, (PyObject *)Gt_type); in obj2ast_cmpop()
8331 if (PyDict_SetItemString(d, "Gt", (PyObject*)Gt_type) < 0) return NULL; in PyInit__ast()