Skip to content
Snippets Groups Projects
Commit f1a99233 authored by Tom Soulanille's avatar Tom Soulanille Committed by Damien George
Browse files

py/objrange: Bugfix for range_subscr() when index is a slice object.

parent 2a8a564f
No related branches found
No related tags found
No related merge requests found
...@@ -148,9 +148,9 @@ STATIC mp_obj_t range_subscr(mp_obj_t self_in, mp_obj_t index, mp_obj_t value) { ...@@ -148,9 +148,9 @@ STATIC mp_obj_t range_subscr(mp_obj_t self_in, mp_obj_t index, mp_obj_t value) {
mp_seq_get_fast_slice_indexes(len, index, &slice); mp_seq_get_fast_slice_indexes(len, index, &slice);
mp_obj_range_t *o = m_new_obj(mp_obj_range_t); mp_obj_range_t *o = m_new_obj(mp_obj_range_t);
o->base.type = &mp_type_range; o->base.type = &mp_type_range;
o->start = slice.start; o->start = self->start + slice.start * self->step;
o->stop = slice.stop; o->stop = self->start + slice.stop * self->step;
o->step = slice.step; o->step = slice.step * self->step;
return o; return o;
} }
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment