Home
last modified time | relevance | path

Searched refs:Del_type (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Python/
DPython-ast.c279 static PyTypeObject *Del_type; variable
798 Del_type = make_type("Del", expr_context_type, NULL, 0); in init_types()
799 if (!Del_type) return 0; in init_types()
800 Del_singleton = PyType_GenericNew(Del_type, NULL, NULL); in init_types()
5944 isinstance = PyObject_IsInstance(obj, (PyObject *)Del_type); in obj2ast_expr_context()
6854 if (PyDict_SetItemString(d, "Del", (PyObject*)Del_type) < 0) return; in init_ast()
/external/python/cpython3/Python/
DPython-ast.c364 static PyTypeObject *Del_type; variable
987 Del_type = make_type("Del", expr_context_type, NULL, 0); in init_types()
988 if (!Del_type) return 0; in init_types()
989 Del_singleton = PyType_GenericNew(Del_type, NULL, NULL); in init_types()
7151 isinstance = PyObject_IsInstance(obj, (PyObject *)Del_type); in obj2ast_expr_context()
8276 if (PyDict_SetItemString(d, "Del", (PyObject*)Del_type) < 0) return NULL; in PyInit__ast()