Searched refs:Delete_type (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Python/ |
D | Python-ast.c | 58 static PyTypeObject *Delete_type; variable 697 Delete_type = make_type("Delete", stmt_type, Delete_fields, 1); in init_types() 698 if (!Delete_type) return 0; in init_types() 2261 result = PyType_GenericNew(Delete_type, NULL, NULL); in ast2obj_stmt() 3752 isinstance = PyObject_IsInstance(obj, (PyObject*)Delete_type); in obj2ast_stmt() 6787 if (PyDict_SetItemString(d, "Delete", (PyObject*)Delete_type) < 0) in init_ast()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 71 static PyTypeObject *Delete_type; variable 868 Delete_type = make_type("Delete", stmt_type, Delete_fields, 1); in init_types() 869 if (!Delete_type) return 0; in init_types() 2730 result = PyType_GenericNew(Delete_type, NULL, NULL); in ast2obj_stmt() 4549 isinstance = PyObject_IsInstance(obj, (PyObject*)Delete_type); in obj2ast_stmt() 8181 if (PyDict_SetItemString(d, "Delete", (PyObject*)Delete_type) < 0) return in PyInit__ast()
|