@@ -222,7 +222,7 @@ CB_WRAPPER(void, py_progress_stop, (GPContext *context, unsigned int id, void *d
222
222
}
223
223
%typemap(in) cb_func_type {
224
224
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);
226
226
}
227
227
_global_callbacks->func_1 = $input;
228
228
Py_INCREF (_global_callbacks->func_1 );
@@ -259,7 +259,7 @@ SINGLE_CALLBACK_FUNCTION(GPContextProgressStartFunc,
259
259
// Use typemaps for other two functions
260
260
%typemap(in) GPContextProgressUpdateFunc {
261
261
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);
263
263
}
264
264
_global_callbacks->func_2 = $input;
265
265
Py_INCREF (_global_callbacks->func_2 );
@@ -269,7 +269,7 @@ SINGLE_CALLBACK_FUNCTION(GPContextProgressStartFunc,
269
269
270
270
%typemap(in) GPContextProgressStopFunc {
271
271
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);
273
273
}
274
274
_global_callbacks->func_3 = $input;
275
275
Py_INCREF (_global_callbacks->func_3 );
0 commit comments