Searched refs:Pow_singleton (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | Python-ast.c | 307 *Div_singleton, *Mod_singleton, *Pow_singleton, *LShift_singleton, variable 861 Pow_singleton = PyType_GenericNew(Pow_type, NULL, NULL); in init_types() 862 if (!Pow_singleton) return 0; in init_types() 3053 Py_INCREF(Pow_singleton); in ast2obj_operator() 3054 return Pow_singleton; in ast2obj_operator()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 395 *MatMult_singleton, *Div_singleton, *Mod_singleton, *Pow_singleton, variable 1052 Pow_singleton = PyType_GenericNew(Pow_type, NULL, NULL); in init_types() 1053 if (!Pow_singleton) return 0; in init_types() 3600 Py_INCREF(Pow_singleton); in ast2obj_operator() 3601 return Pow_singleton; in ast2obj_operator()
|