py/objstr: Make sure that b"%s" % b"foo" uses undecorated bytes value.

I.e. the expected result for above is b"foo", whereas previously we got
b"b'foo'".
This commit is contained in:
Paul Sokolovsky 2015-12-20 16:44:36 +02:00
parent 0a4eb4dbf2
commit ef63ab5724
2 changed files with 10 additions and 2 deletions

View File

@ -390,6 +390,7 @@ typedef enum {
PRINT_REPR = 1, PRINT_REPR = 1,
PRINT_EXC = 2, // Special format for printing exception in unhandled exception message PRINT_EXC = 2, // Special format for printing exception in unhandled exception message
PRINT_JSON = 3, PRINT_JSON = 3,
PRINT_RAW = 4, // Special format for printing bytes as an undercorated string
PRINT_EXC_SUBCLASS = 0x80, // Internal flag for printing exception subclasses PRINT_EXC_SUBCLASS = 0x80, // Internal flag for printing exception subclasses
} mp_print_kind_t; } mp_print_kind_t;

View File

@ -121,7 +121,7 @@ STATIC void str_print(const mp_print_t *print, mp_obj_t self_in, mp_print_kind_t
#else #else
bool is_bytes = true; bool is_bytes = true;
#endif #endif
if (!MICROPY_PY_BUILTINS_STR_UNICODE && kind == PRINT_STR && !is_bytes) { if (kind == PRINT_RAW || (!MICROPY_PY_BUILTINS_STR_UNICODE && kind == PRINT_STR && !is_bytes)) {
mp_printf(print, "%.*s", str_len, str_data); mp_printf(print, "%.*s", str_len, str_data);
} else { } else {
if (is_bytes) { if (is_bytes) {
@ -1296,6 +1296,7 @@ STATIC mp_obj_t str_modulo_format(mp_obj_t pattern, mp_uint_t n_args, const mp_o
GET_STR_DATA_LEN(pattern, str, len); GET_STR_DATA_LEN(pattern, str, len);
const byte *start_str = str; const byte *start_str = str;
bool is_bytes = MP_OBJ_IS_TYPE(pattern, &mp_type_bytes);
int arg_i = 0; int arg_i = 0;
vstr_t vstr; vstr_t vstr;
mp_print_t print; mp_print_t print;
@ -1444,7 +1445,13 @@ not_enough_args:
vstr_t arg_vstr; vstr_t arg_vstr;
mp_print_t arg_print; mp_print_t arg_print;
vstr_init_print(&arg_vstr, 16, &arg_print); vstr_init_print(&arg_vstr, 16, &arg_print);
mp_obj_print_helper(&arg_print, arg, *str == 'r' ? PRINT_REPR : PRINT_STR); mp_print_kind_t print_kind = (*str == 'r' ? PRINT_REPR : PRINT_STR);
if (print_kind == PRINT_STR && is_bytes && MP_OBJ_IS_TYPE(arg, &mp_type_bytes)) {
// If we have something like b"%s" % b"1", bytes arg should be
// printed undecorated.
print_kind = PRINT_RAW;
}
mp_obj_print_helper(&arg_print, arg, print_kind);
uint vlen = arg_vstr.len; uint vlen = arg_vstr.len;
if (prec < 0) { if (prec < 0) {
prec = vlen; prec = vlen;