Lines Matching defs:args
233 PyObject *args;
235 args = PyTuple_New(1 + (errors != NULL));
236 if (args == NULL)
239 PyTuple_SET_ITEM(args,0,object);
245 Py_DECREF(args);
248 PyTuple_SET_ITEM(args, 1, v);
250 return args;
414 PyObject *args = NULL, *result = NULL;
417 args = args_tuple(object, errors);
418 if (args == NULL)
421 result = PyObject_Call(encoder, args, NULL);
437 Py_DECREF(args);
444 Py_XDECREF(args);
460 PyObject *args = NULL, *result = NULL;
463 args = args_tuple(object, errors);
464 if (args == NULL)
467 result = PyObject_Call(decoder, args, NULL);
482 Py_DECREF(args);
488 Py_XDECREF(args);