From 897129a7ff46ee82228369ed8fab43a7c0acb692 Mon Sep 17 00:00:00 2001
From: Damien George <damien.p.george@gmail.com>
Date: Tue, 27 Sep 2016 15:45:42 +1000
Subject: [PATCH] py/objstr: Remove unreachable function used only for terse
 error msgs.

---
 py/objstr.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/py/objstr.c b/py/objstr.c
index 406ccf290..f082e9559 100644
--- a/py/objstr.c
+++ b/py/objstr.c
@@ -881,9 +881,14 @@ STATIC mp_obj_t arg_as_int(mp_obj_t arg) {
     return arg;
 }
 
+#if MICROPY_ERROR_REPORTING == MICROPY_ERROR_REPORTING_TERSE
 STATIC NORETURN void terse_str_format_value_error(void) {
     mp_raise_ValueError("bad format string");
 }
+#else
+// define to nothing to improve coverage
+#define terse_str_format_value_error()
+#endif
 
 STATIC vstr_t mp_obj_str_format_helper(const char *str, const char *top, int *arg_i, mp_uint_t n_args, const mp_obj_t *args, mp_map_t *kwargs) {
     vstr_t vstr;
-- 
GitLab