Home | History | Annotate | Download | only in Modules

Lines Matching defs:fn

94     PyObject *fn;
127 pto->fn = func;
149 Py_XDECREF(pto->fn);
162 assert (PyCallable_Check(pto->fn));
197 ret = PyObject_Call(pto->fn, argappl, kwappl);
206 Py_VISIT(pto->fn);
219 {"func", T_OBJECT, OFF(fn), READONLY,
279 return Py_BuildValue("O(O)(OOOO)", Py_TYPE(pto), pto->fn, pto->fn,
287 PyObject *fn, *fnargs, *kw, *dict;
290 !PyArg_ParseTuple(state, "OOOO", &fn, &fnargs, &kw, &dict) ||
291 !PyCallable_Check(fn) ||
317 Py_INCREF(fn);
323 Py_SETREF(pto->fn, fn);