Searched refs:Add_singleton (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | Python-ast.c | 306 static PyObject *Add_singleton, *Sub_singleton, *Mult_singleton, variable 841 Add_singleton = PyType_GenericNew(Add_type, NULL, NULL); in init_types() 842 if (!Add_singleton) return 0; in init_types() 3038 Py_INCREF(Add_singleton); in ast2obj_operator() 3039 return Add_singleton; in ast2obj_operator()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 394 static PyObject *Add_singleton, *Sub_singleton, *Mult_singleton, variable 1028 Add_singleton = PyType_GenericNew(Add_type, NULL, NULL); in init_types() 1029 if (!Add_singleton) return 0; in init_types() 3582 Py_INCREF(Add_singleton); in ast2obj_operator() 3583 return Add_singleton; in ast2obj_operator()
|