Skip to content
Snippets Groups Projects
Commit db1e10d5 authored by Damien George's avatar Damien George
Browse files

py: Use SMALL_INT creation macro in builtin sum.

parent 96e37d3b
No related branches found
No related tags found
No related merge requests found
......@@ -492,7 +492,7 @@ STATIC mp_obj_t mp_builtin_sum(mp_uint_t n_args, const mp_obj_t *args) {
assert(1 <= n_args && n_args <= 2);
mp_obj_t value;
switch (n_args) {
case 1: value = mp_obj_new_int(0); break;
case 1: value = MP_OBJ_NEW_SMALL_INT(0); break;
default: value = args[1]; break;
}
mp_obj_t iterable = mp_getiter(args[0]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment