Lines Matching defs:func
204 Py_CLEAR(state->func);
307 if ((state->func = PyUnicode_InternFromString("func")) == NULL) return 0;
590 "func",
976 static PyObject* ast2obj_list(struct ast_state *state, asdl_seq *seq, PyObject* (*func)(struct ast_state *state, void*))
984 value = func(state, asdl_seq_GET_UNTYPED(seq, i));
1327 " | Call(expr func, expr* args, keyword* keywords)\n"
1413 "Call(expr func, expr* args, keyword* keywords)");
2979 _PyAST_Call(expr_ty func, asdl_expr_seq * args, asdl_keyword_seq * keywords,
2984 if (!func) {
2986 "field 'func' is required for Call");
2993 p->v.Call.func = func;
4519 value = ast2obj_expr(state, o->v.Call.func);
4521 if (PyObject_SetAttr(result, state->func, value) == -1)
9200 expr_ty func;
9204 if (_PyObject_LookupAttr(obj, state->func, &tmp) < 0) {
9208 PyErr_SetString(PyExc_TypeError, "required field \"func\" missing from Call");
9216 res = obj2ast_expr(state, tmp, &func, arena);
9295 *out = _PyAST_Call(func, args, keywords, lineno, col_offset,