Lines Matching refs:fn
94 PyObject *fn;
127 pto->fn = func;
150 Py_XDECREF(pto->fn);
163 assert (PyCallable_Check(pto->fn));
198 ret = PyObject_Call(pto->fn, argappl, kwappl);
207 Py_VISIT(pto->fn);
220 {"func", T_OBJECT, OFF(fn), READONLY,
280 return Py_BuildValue("O(O)(OOOO)", Py_TYPE(pto), pto->fn, pto->fn,
288 PyObject *fn, *fnargs, *kw, *dict;
291 !PyArg_ParseTuple(state, "OOOO", &fn, &fnargs, &kw, &dict) ||
292 !PyCallable_Check(fn) ||
318 Py_INCREF(fn);
324 Py_SETREF(pto->fn, fn);