From ee51968d9d859c1ea28ed597f63935294b2a02b7 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Wed, 20 Sep 2023 11:24:45 -0500 Subject: [PATCH] can't be static, is called from builtins --- py/objlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/objlist.c b/py/objlist.c index 36b4d962ef..c1be0bdeb7 100644 --- a/py/objlist.c +++ b/py/objlist.c @@ -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);