Searched refs:Eq_singleton (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | Python-ast.c | 332 static PyObject *Eq_singleton, *NotEq_singleton, *Lt_singleton, *LtE_singleton, variable 911 Eq_singleton = PyType_GenericNew(Eq_type, NULL, NULL); in init_types() 912 if (!Eq_singleton) return 0; in init_types() 3104 Py_INCREF(Eq_singleton); in ast2obj_cmpop() 3105 return Eq_singleton; in ast2obj_cmpop()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 421 static PyObject *Eq_singleton, *NotEq_singleton, *Lt_singleton, *LtE_singleton, variable 1102 Eq_singleton = PyType_GenericNew(Eq_type, NULL, NULL); in init_types() 1103 if (!Eq_singleton) return 0; in init_types() 3651 Py_INCREF(Eq_singleton); in ast2obj_cmpop() 3652 return Eq_singleton; in ast2obj_cmpop()
|