mirror of
https://github.com/micropython/micropython.git
synced 2026-01-05 03:30:14 +01:00
Fix assert() usage.
This commit is contained in:
@@ -139,7 +139,9 @@ static mp_obj_t list_binary_op(int op, mp_obj_t lhs, mp_obj_t rhs) {
|
||||
#if MICROPY_ENABLE_SLICE
|
||||
if (MP_OBJ_IS_TYPE(rhs, &slice_type)) {
|
||||
machine_uint_t start, stop;
|
||||
assert(m_seq_get_fast_slice_indexes(o->len, rhs, &start, &stop));
|
||||
if (!m_seq_get_fast_slice_indexes(o->len, rhs, &start, &stop)) {
|
||||
assert(0);
|
||||
}
|
||||
mp_obj_list_t *res = list_new(stop - start);
|
||||
m_seq_copy(res->items, o->items + start, res->len, mp_obj_t);
|
||||
return res;
|
||||
|
||||
Reference in New Issue
Block a user