can't be static, is called from builtins

This commit is contained in:
Jeff Epler 2023-09-20 11:24:45 -05:00
parent 4ed939f26e
commit ee51968d9d
No known key found for this signature in database
GPG Key ID: D5BF15AB975AB4DE

View File

@ -76,7 +76,7 @@ mp_obj_t mp_obj_new_list_from_iter(mp_obj_t iterable) {
return list_extend_from_iter(list, iterable);
}
STATIC mp_obj_t list_make_new(const mp_obj_type_t *type_in, size_t n_args, size_t n_kw, const mp_obj_t *args) {
mp_obj_t mp_obj_list_make_new(const mp_obj_type_t *type_in, size_t n_args, size_t n_kw, const mp_obj_t *args) {
(void)type_in;
mp_arg_check_num(n_args, n_kw, 0, 1, false);