diff options
author | John R. Lenton <jlenton@gmail.com> | 2014-01-03 23:42:17 +0000 |
---|---|---|
committer | John R. Lenton <jlenton@gmail.com> | 2014-01-03 23:42:17 +0000 |
commit | 26c211648bc00085233ece9c53f19a64ecca41fa (patch) | |
tree | 31f713fc4a1b1c8f1dbb8e95b5276cc84dcc0a41 /py | |
parent | 069ded95147c26a1c5b5a4c2c21c1daf94191bb5 (diff) | |
download | micropython-26c211648bc00085233ece9c53f19a64ecca41fa.tar.gz micropython-26c211648bc00085233ece9c53f19a64ecca41fa.zip |
Implemented list.copy. Fixes issue #54.
Diffstat (limited to 'py')
-rw-r--r-- | py/objlist.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/py/objlist.c b/py/objlist.c index 28b373b782..e371057981 100644 --- a/py/objlist.c +++ b/py/objlist.c @@ -134,8 +134,15 @@ static mp_obj_t list_clear(mp_obj_t self_in) { return mp_const_none; } +static mp_obj_t list_copy(mp_obj_t self_in) { + assert(MP_OBJ_IS_TYPE(self_in, &list_type)); + mp_obj_list_t *self = self_in; + return mp_obj_new_list(self->len, self->items); +} + static MP_DEFINE_CONST_FUN_OBJ_2(list_append_obj, mp_obj_list_append); static MP_DEFINE_CONST_FUN_OBJ_1(list_clear_obj, list_clear); +static MP_DEFINE_CONST_FUN_OBJ_1(list_copy_obj, list_copy); static MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(list_pop_obj, 1, 2, list_pop); static MP_DEFINE_CONST_FUN_OBJ_2(list_sort_obj, list_sort); @@ -151,6 +158,7 @@ const mp_obj_type_t list_type = { { // method list { "append", &list_append_obj }, { "clear", &list_clear_obj }, + { "copy", &list_copy_obj }, { "pop", &list_pop_obj }, { "sort", &list_sort_obj }, { NULL, NULL }, // end-of-list sentinel |