Home | History | Annotate | Download | only in Modules

Lines Matching defs:fn

94     PyObject *fn;

127 pto->fn = func;
158 Py_XDECREF(pto->fn);
171 assert (PyCallable_Check(pto->fn));
205 ret = PyObject_Call(pto->fn, argappl, kwappl);
214 Py_VISIT(pto->fn);
227 {"func", T_OBJECT, OFF(fn), READONLY,
287 return Py_BuildValue("O(O)(OOOO)", Py_TYPE(pto), pto->fn, pto->fn,
295 PyObject *fn, *fnargs, *kw, *dict;
297 &fn, &fnargs, &kw, &dict))
299 Py_XDECREF(pto->fn);
303 pto->fn = fn;
312 Py_INCREF(fn);