diff options
author | David Lechner <david@pybricks.com> | 2020-04-08 12:17:28 -0500 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2021-07-01 13:23:54 +1000 |
commit | 58e4d723383dfd9856520728b0920ff20fa76407 (patch) | |
tree | 634cc3779be6996f41a9314f73733f6c588147a4 /py/objexcept.c | |
parent | 41adf178309759d5965c15972f04987a2635314c (diff) |
py/objexcept: Pretty print OSError also when it has 2 arguments.
This extends pretty-printing of OSError's to handle two arguments when the
exception name is known.
Signed-off-by: David Lechner <david@pybricks.com>
Diffstat (limited to 'py/objexcept.c')
-rw-r--r-- | py/objexcept.c | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/py/objexcept.c b/py/objexcept.c index f03bb1b41..a10bd2c18 100644 --- a/py/objexcept.c +++ b/py/objexcept.c @@ -163,17 +163,24 @@ void mp_obj_exception_print(const mp_print_t *print, mp_obj_t o_in, mp_print_kin if (o->args == NULL || o->args->len == 0) { mp_print_str(print, ""); return; - } else if (o->args->len == 1) { - #if MICROPY_PY_UERRNO - // try to provide a nice OSError error message - if (o->base.type == &mp_type_OSError && mp_obj_is_small_int(o->args->items[0])) { - qstr qst = mp_errno_to_str(o->args->items[0]); - if (qst != MP_QSTRnull) { - mp_printf(print, "[Errno " INT_FMT "] %q", MP_OBJ_SMALL_INT_VALUE(o->args->items[0]), qst); - return; + } + + #if MICROPY_PY_UERRNO + // try to provide a nice OSError error message + if (o->base.type == &mp_type_OSError && o->args->len > 0 && o->args->len < 3 && mp_obj_is_small_int(o->args->items[0])) { + qstr qst = mp_errno_to_str(o->args->items[0]); + if (qst != MP_QSTRnull) { + mp_printf(print, "[Errno " INT_FMT "] %q", MP_OBJ_SMALL_INT_VALUE(o->args->items[0]), qst); + if (o->args->len > 1) { + mp_print_str(print, ": "); + mp_obj_print_helper(print, o->args->items[1], PRINT_STR); } + return; } - #endif + } + #endif + + if (o->args->len == 1) { mp_obj_print_helper(print, o->args->items[0], PRINT_STR); return; } |