py/objstr: Applying % (format) operator to bytes should return bytes, not str.

pull/1730/head
Paul Sokolovsky 2015-12-20 16:50:51 +02:00
rodzic ef63ab5724
commit d50f649cf8
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -1484,7 +1484,7 @@ not_enough_args:
nlr_raise(mp_obj_new_exception_msg(&mp_type_TypeError, "not all arguments converted during string formatting"));
}
return mp_obj_new_str_from_vstr(&mp_type_str, &vstr);
return mp_obj_new_str_from_vstr(is_bytes ? &mp_type_bytes : &mp_type_str, &vstr);
}
// The implementation is optimized, returning the original string if there's