diff options
| author | Scott Shawcroft <scott.shawcroft@gmail.com> | 2017-02-24 16:46:38 +0100 |
|---|---|---|
| committer | Scott Shawcroft <scott.shawcroft@gmail.com> | 2017-02-24 16:46:38 +0100 |
| commit | 75d6abe3bb57cf75915a056e5e98e4b79efec2ad (patch) | |
| tree | d61e76e2a6c71482515fb1f156b501833d38e165 /py/objtuple.c | |
| parent | 35071b36811b3d1043e0a57018b81798b60d72fa (diff) | |
Correct name of mp_raise_NotImplementedError to make error name.
Diffstat (limited to 'py/objtuple.c')
| -rw-r--r-- | py/objtuple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objtuple.c b/py/objtuple.c index 409f051ab..fdc0a23a4 100644 --- a/py/objtuple.c +++ b/py/objtuple.c @@ -181,7 +181,7 @@ mp_obj_t mp_obj_tuple_subscr(mp_obj_t self_in, mp_obj_t index, mp_obj_t value) { if (MP_OBJ_IS_TYPE(index, &mp_type_slice)) { mp_bound_slice_t slice; if (!mp_seq_get_fast_slice_indexes(self->len, index, &slice)) { - mp_raise_NotImplementError("only slices with step=1 (aka None) are supported"); + mp_raise_NotImplementedError("only slices with step=1 (aka None) are supported"); } mp_obj_tuple_t *res = MP_OBJ_TO_PTR(mp_obj_new_tuple(slice.stop - slice.start, NULL)); mp_seq_copy(res->items, self->items + slice.start, res->len, mp_obj_t); |
