Searched refs:Load_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 792 Load_singleton = PyType_GenericNew(Load_type, NULL, NULL); in init_types() 793 if (!Load_singleton) return 0; in init_types() 2936 Py_INCREF(Load_singleton); in ast2obj_expr_context() 2937 return Load_singleton; in ast2obj_expr_context()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 359 static PyObject *Load_singleton, *Store_singleton, *Del_singleton, variable 981 Load_singleton = PyType_GenericNew(Load_type, NULL, NULL); in init_types() 982 if (!Load_singleton) return 0; in init_types() 3485 Py_INCREF(Load_singleton); in ast2obj_expr_context() 3486 return Load_singleton; in ast2obj_expr_context()
|