Searched refs:Del_singleton (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | Python-ast.c | 274 static PyObject *Load_singleton, *Store_singleton, *Del_singleton, variable 800 Del_singleton = PyType_GenericNew(Del_type, NULL, NULL); in init_types() 801 if (!Del_singleton) return 0; in init_types() 2942 Py_INCREF(Del_singleton); in ast2obj_expr_context() 2943 return Del_singleton; in ast2obj_expr_context()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 359 static PyObject *Load_singleton, *Store_singleton, *Del_singleton, variable 989 Del_singleton = PyType_GenericNew(Del_type, NULL, NULL); in init_types() 990 if (!Del_singleton) return 0; in init_types() 3491 Py_INCREF(Del_singleton); in ast2obj_expr_context() 3492 return Del_singleton; in ast2obj_expr_context()
|