diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-01-28 22:29:07 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-01-28 22:29:07 +0200 |
commit | bbd9251bac5bf7e2c2055a8b17172b46e7ff8cd0 (patch) | |
tree | fbc5a90ae7526be87e7286990d68c14fadda69e0 | |
parent | 98e3a64694b63b90a590b6effc6e8ef53f66159a (diff) | |
download | micropython-bbd9251bac5bf7e2c2055a8b17172b46e7ff8cd0.tar.gz micropython-bbd9251bac5bf7e2c2055a8b17172b46e7ff8cd0.zip |
py: bytes(): Make sure we add values as bytes, not as chars.
-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 5cd0f284e5..3b2ce8f358 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_char(&vstr, MP_OBJ_SMALL_INT_VALUE(item)); + vstr_add_byte(&vstr, MP_OBJ_SMALL_INT_VALUE(item)); } return mp_obj_new_str_from_vstr(&mp_type_bytes, &vstr); |