Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
DPython-ast.c200 static PyTypeObject *SetComp_type; variable
758 SetComp_type = make_type("SetComp", expr_type, SetComp_fields, 2); in init_types()
759 if (!SetComp_type) return 0; in init_types()
2695 result = PyType_GenericNew(SetComp_type, NULL, NULL); in ast2obj_expr()
5217 isinstance = PyObject_IsInstance(obj, (PyObject*)SetComp_type); in obj2ast_expr()
6830 if (PyDict_SetItemString(d, "SetComp", (PyObject*)SetComp_type) < 0) in init_ast()
/external/python/cpython3/Python/
DPython-ast.c243 static PyTypeObject *SetComp_type; variable
929 SetComp_type = make_type("SetComp", expr_type, SetComp_fields, 2); in init_types()
930 if (!SetComp_type) return 0; in init_types()
3174 result = PyType_GenericNew(SetComp_type, NULL, NULL); in ast2obj_expr()
6186 isinstance = PyObject_IsInstance(obj, (PyObject*)SetComp_type); in obj2ast_expr()
8232 if (PyDict_SetItemString(d, "SetComp", (PyObject*)SetComp_type) < 0) return in PyInit__ast()