Searched refs:Sub_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 845 Sub_singleton = PyType_GenericNew(Sub_type, NULL, NULL); in init_types() 846 if (!Sub_singleton) return 0; in init_types() 3041 Py_INCREF(Sub_singleton); in ast2obj_operator() 3042 return Sub_singleton; in ast2obj_operator()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 394 static PyObject *Add_singleton, *Sub_singleton, *Mult_singleton, variable 1032 Sub_singleton = PyType_GenericNew(Sub_type, NULL, NULL); in init_types() 1033 if (!Sub_singleton) return 0; in init_types() 3585 Py_INCREF(Sub_singleton); in ast2obj_operator() 3586 return Sub_singleton; in ast2obj_operator()
|