Searched refs:Load_type (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | Python-ast.c | 277 static PyTypeObject *Load_type; variable 790 Load_type = make_type("Load", expr_context_type, NULL, 0); in init_types() 791 if (!Load_type) return 0; in init_types() 792 Load_singleton = PyType_GenericNew(Load_type, NULL, NULL); in init_types() 5928 isinstance = PyObject_IsInstance(obj, (PyObject *)Load_type); in obj2ast_expr_context() 6852 if (PyDict_SetItemString(d, "Load", (PyObject*)Load_type) < 0) return; in init_ast()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 362 static PyTypeObject *Load_type; variable 979 Load_type = make_type("Load", expr_context_type, NULL, 0); in init_types() 980 if (!Load_type) return 0; in init_types() 981 Load_singleton = PyType_GenericNew(Load_type, NULL, NULL); in init_types() 7135 isinstance = PyObject_IsInstance(obj, (PyObject *)Load_type); in obj2ast_expr_context() 8273 if (PyDict_SetItemString(d, "Load", (PyObject*)Load_type) < 0) return NULL; in PyInit__ast()
|