Lines Matching refs:result
330 PyObject *result = _PyCFunction_TrampolineCall(
334 return result;
350 PyObject *result = NULL;
364 result = _PyCFunctionWithKeywords_TrampolineCall(
370 return result;
386 PyObject *result = meth(args[0],
390 return result;
407 PyObject *result = meth(args[0], args+1, nargs-1);
409 return result;
426 PyObject *result = meth(args[0], args+1, nargs-1, kwnames);
428 return result;
453 PyObject *result = _PyCFunction_TrampolineCall(meth, args[0], NULL);
455 return result;
481 PyObject *result = _PyCFunction_TrampolineCall(meth, args[0], args[1]);
483 return result;
493 we implement this simply by calling __get__ and then calling the result.
543 PyObject *self, *result;
573 result = wrapperdescr_raw_call(descr, self, args, kwds);
575 return result;