Skip to content

Commit d9a8719

Browse files
Use SWIG's %argument_fail macro more widely
1 parent de0cc18 commit d9a8719

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/gphoto2/context.i

+3-3
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ CB_WRAPPER(void, py_progress_stop, (GPContext *context, unsigned int id, void *d
222222
}
223223
%typemap(in) cb_func_type {
224224
if (!PyCallable_Check($input)) {
225-
SWIG_exception_fail(SWIG_TypeError, "in method '" "$symname" "', argument " "$argnum" " is not callable");
225+
%argument_fail(SWIG_TypeError, callable, $symname, $argnum);
226226
}
227227
_global_callbacks->func_1 = $input;
228228
Py_INCREF(_global_callbacks->func_1);
@@ -259,7 +259,7 @@ SINGLE_CALLBACK_FUNCTION(GPContextProgressStartFunc,
259259
// Use typemaps for other two functions
260260
%typemap(in) GPContextProgressUpdateFunc {
261261
if (!PyCallable_Check($input)) {
262-
SWIG_exception_fail(SWIG_TypeError, "in method '" "$symname" "', argument " "$argnum" " is not callable");
262+
%argument_fail(SWIG_TypeError, callable, $symname, $argnum);
263263
}
264264
_global_callbacks->func_2 = $input;
265265
Py_INCREF(_global_callbacks->func_2);
@@ -269,7 +269,7 @@ SINGLE_CALLBACK_FUNCTION(GPContextProgressStartFunc,
269269

270270
%typemap(in) GPContextProgressStopFunc {
271271
if (!PyCallable_Check($input)) {
272-
SWIG_exception_fail(SWIG_TypeError, "in method '" "$symname" "', argument " "$argnum" " is not callable");
272+
%argument_fail(SWIG_TypeError, callable, $symname, $argnum);
273273
}
274274
_global_callbacks->func_3 = $input;
275275
Py_INCREF(_global_callbacks->func_3);

src/gphoto2/port_log.i

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ static void gp_log_call_python(GPLogLevel level, const char *domain,
121121
}
122122
%typemap(in) GPLogFunc {
123123
if (!PyCallable_Check($input)) {
124-
SWIG_exception_fail(SWIG_TypeError, "in method '" "$symname" "', argument " "$argnum" " is not callable");
124+
%argument_fail(SWIG_TypeError, callable, $symname, $argnum);
125125
}
126126
_global_callback->func = $input;
127127
Py_INCREF(_global_callback->func);

src/gphoto2/widget.i

+3-3
Original file line numberDiff line numberDiff line change
@@ -145,14 +145,14 @@ int gp_widget_get_value(CameraWidget *widget, void *value_out);
145145
case GP_WIDGET_TOGGLE:
146146
res = SWIG_AsVal_int($input, &value.int_val);
147147
if (!SWIG_IsOK(res)) {
148-
%argument_fail(res, int, $symname, 2);
148+
%argument_fail(res, int, $symname, $argnum);
149149
}
150150
$1 = &value.int_val;
151151
break;
152152
case GP_WIDGET_RANGE:
153153
res = SWIG_AsVal_float($input, &value.flt_val);
154154
if (!SWIG_IsOK(res)) {
155-
%argument_fail(res, float, $symname, 2);
155+
%argument_fail(res, float, $symname, $argnum);
156156
}
157157
$1 = &value.flt_val;
158158
break;
@@ -161,7 +161,7 @@ int gp_widget_get_value(CameraWidget *widget, void *value_out);
161161
case GP_WIDGET_RADIO:
162162
res = SWIG_AsCharPtrAndSize($input, &value.str_val, NULL, &alloc);
163163
if (!SWIG_IsOK(res)) {
164-
%argument_fail(res, str, $symname, 2);
164+
%argument_fail(res, str, $symname, $argnum);
165165
}
166166
// Note this is a pointer set by SWIG_AsCharPtrAndSize, not the address of value
167167
$1 = value.str_val;

0 commit comments

Comments
 (0)