summaryrefslogtreecommitdiffstatshomepage
path: root/py/objfun.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/objfun.c')
-rw-r--r--py/objfun.c25
1 files changed, 13 insertions, 12 deletions
diff --git a/py/objfun.c b/py/objfun.c
index 4ef92c0256..8fadbc6119 100644
--- a/py/objfun.c
+++ b/py/objfun.c
@@ -229,7 +229,8 @@ STATIC mp_obj_t fun_bc_call(mp_obj_t self_in, uint n_args, uint n_kw, const mp_o
if (n_args > self->n_args) {
// given more than enough arguments
if (!self->takes_var_args) {
- goto arg_error;
+ nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_TypeError,
+ "function takes %d positional arguments but %d were given", self->n_args, n_args));
}
// put extra arguments in varargs tuple
*extra_args = mp_obj_new_tuple(n_args - self->n_args, args + self->n_args);
@@ -249,7 +250,9 @@ STATIC mp_obj_t fun_bc_call(mp_obj_t self_in, uint n_args, uint n_kw, const mp_o
extra_args -= self->n_args - n_args;
n_extra_args += self->n_args - n_args;
} else {
- goto arg_error;
+ nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_TypeError,
+ "function takes at least %d positional arguments but %d were given",
+ self->n_args - self->n_def_args, n_args));
}
}
}
@@ -344,9 +347,6 @@ continue2:;
} else { // MP_VM_RETURN_EXCEPTION
nlr_raise(result);
}
-
-arg_error:
- nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_TypeError, "function takes %d positional arguments but %d were given", self->n_args, n_args));
}
const mp_obj_type_t mp_type_fun_bc = {
@@ -442,14 +442,15 @@ STATIC machine_uint_t convert_obj_for_inline_asm(mp_obj_t obj) {
mp_obj_t *items;
mp_obj_list_get(obj, &len, &items);
return (machine_uint_t)items;
- } else if (type->buffer_p.get_buffer != NULL) {
- // supports the buffer protocol, get a pointer to the data
- buffer_info_t bufinfo;
- type->buffer_p.get_buffer(obj, &bufinfo, BUFFER_READ);
- return (machine_uint_t)bufinfo.buf;
} else {
- // just pass along a pointer to the object
- return (machine_uint_t)obj;
+ buffer_info_t bufinfo;
+ if (mp_get_buffer(obj, &bufinfo)) {
+ // supports the buffer protocol, return a pointer to the data
+ return (machine_uint_t)bufinfo.buf;
+ } else {
+ // just pass along a pointer to the object
+ return (machine_uint_t)obj;
+ }
}
}
}