diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-02-09 12:11:49 +0800 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-02-09 12:11:49 +0800 |
commit | 194117a066fa0af6cbe712223195e4ff02037298 (patch) | |
tree | cffc8cd397aa91146d63ef0d180eab13b23a9dcd /py/objstr.c | |
parent | 28631537bd14d0497c8d51d796cdda45b3719890 (diff) |
objstr: Fix bytes creation from array of long ints.
Diffstat (limited to 'py/objstr.c')
-rw-r--r-- | py/objstr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objstr.c b/py/objstr.c index 43de047a7..9baaedf18 100644 --- a/py/objstr.c +++ b/py/objstr.c @@ -223,7 +223,7 @@ STATIC mp_obj_t bytes_make_new(mp_obj_t type_in, mp_uint_t n_args, mp_uint_t n_k mp_obj_t iterable = mp_getiter(args[0]); mp_obj_t item; while ((item = mp_iternext(iterable)) != MP_OBJ_STOP_ITERATION) { - vstr_add_byte(&vstr, MP_OBJ_SMALL_INT_VALUE(item)); + vstr_add_byte(&vstr, mp_obj_get_int(item)); } return mp_obj_new_str_from_vstr(&mp_type_bytes, &vstr); |