summaryrefslogtreecommitdiff
path: root/py/objstrunicode.c
diff options
context:
space:
mode:
authorJeff Epler <jepler@gmail.com>2020-08-04 11:27:36 -0500
committerJeff Epler <jepler@gmail.com>2020-08-04 14:45:45 -0500
commitc849b781c0186d93a1165784ce4e22d2178d5ccb (patch)
tree650b9259a33d12a64e3f826267da3aa4968b1b84 /py/objstrunicode.c
parent89797fd3f9d36cd7e2e7a125dbbe02f598874060 (diff)
Combine 'index out of range' messages
Diffstat (limited to 'py/objstrunicode.c')
-rw-r--r--py/objstrunicode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/py/objstrunicode.c b/py/objstrunicode.c
index 19d89a31c..50250abfa 100644
--- a/py/objstrunicode.c
+++ b/py/objstrunicode.c
@@ -162,7 +162,7 @@ const byte *str_index_to_ptr(const mp_obj_type_t *type, const byte *self_data, s
if (is_slice) {
return self_data;
}
- mp_raise_IndexError(translate("string index out of range"));
+ mp_raise_IndexError_varg(translate("%q index out of range"), MP_QSTR_str);
}
if (!UTF8_IS_CONT(*s)) {
++i;
@@ -181,7 +181,7 @@ const byte *str_index_to_ptr(const mp_obj_type_t *type, const byte *self_data, s
if (is_slice) {
return top;
}
- mp_raise_IndexError(translate("string index out of range"));
+ mp_raise_IndexError_varg(translate("%q index out of range"), MP_QSTR_str);
}
// Then check completion
if (i-- == 0) {