Lines Matching defs:args
545 /* These args are no longer used, but we still need to steal a ref */
758 PyObject *v, *args;
803 NULL); /* no args */
829 args = Py_BuildValue("(iOOiO)", i, message, filenameObject, 0, filenameObject2);
831 args = Py_BuildValue("(iOO)", i, message, filenameObject);
834 args = Py_BuildValue("(iO)", i, message);
838 if (args != NULL) {
839 v = PyObject_Call(exc, args, NULL);
840 Py_DECREF(args);
888 PyObject *args, *v;
906 NULL); /* no args */
932 args = Py_BuildValue("(iOOiO)", 0, message, filenameObject, err, filenameObject2);
935 if (args != NULL) {
936 v = PyObject_Call(exc, args, NULL);
937 Py_DECREF(args);
1273 PyObject *args = PyStructSequence_New(&UnraisableHookArgsType);
1274 if (args == NULL) {
1285 PyStructSequence_SET_ITEM(args, pos++, exc_type); \
1297 Py_DECREF(args);
1300 return args;
1452 _PyErr_WriteUnraisableDefaultHook(PyObject *args)
1456 if (!Py_IS_TYPE(args, &UnraisableHookArgsType)) {
1464 PyObject *exc_type = PyStructSequence_GET_ITEM(args, 0);
1465 PyObject *exc_value = PyStructSequence_GET_ITEM(args, 1);
1466 PyObject *exc_tb = PyStructSequence_GET_ITEM(args, 2);
1467 PyObject *err_msg = PyStructSequence_GET_ITEM(args, 3);
1468 PyObject *obj = PyStructSequence_GET_ITEM(args, 4);