summaryrefslogtreecommitdiffstatshomepage
path: root/py/objlist.c
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2022-09-17 00:31:23 +1000
committerDamien George <damien@micropython.org>2022-09-19 19:06:15 +1000
commit94beeabd2ee179d587942046555833e022241f24 (patch)
treeda625bb1857de03c33cc40c2139660dd34ee1798 /py/objlist.c
parent6da41b59007c9e9a2443ae17278d32210034a63f (diff)
downloadmicropython-94beeabd2ee179d587942046555833e022241f24.tar.gz
micropython-94beeabd2ee179d587942046555833e022241f24.zip
py/obj: Convert make_new into a mp_obj_type_t slot.
Instead of being an explicit field, it's now a slot like all the other methods. This is a marginal code size improvement because most types have a make_new (100/138 on PYBV11), however it improves consistency in how types are declared, removing the special case for make_new. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'py/objlist.c')
-rw-r--r--py/objlist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/py/objlist.c b/py/objlist.c
index 8d18344ea8..18da91ba3a 100644
--- a/py/objlist.c
+++ b/py/objlist.c
@@ -71,7 +71,7 @@ STATIC mp_obj_t list_extend_from_iter(mp_obj_t list, mp_obj_t iterable) {
return list;
}
-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);
@@ -456,7 +456,7 @@ MP_DEFINE_CONST_OBJ_TYPE(
mp_type_list,
MP_QSTR_list,
MP_TYPE_FLAG_ITER_IS_GETITER,
- list_make_new,
+ make_new, mp_obj_list_make_new,
print, list_print,
unary_op, list_unary_op,
binary_op, list_binary_op,