py: Fix prefix on few sequence helpers, was incorrectly "mp_".

This commit is contained in:
Paul Sokolovsky
2014-05-10 21:36:33 +03:00
parent aa4d19a05c
commit d915a52eb6
7 changed files with 16 additions and 16 deletions

View File

@@ -50,7 +50,7 @@ void mp_seq_multiply(const void *items, uint item_sz, uint len, uint times, void
}
}
bool m_seq_get_fast_slice_indexes(machine_uint_t len, mp_obj_t slice, machine_uint_t *begin, machine_uint_t *end) {
bool mp_seq_get_fast_slice_indexes(machine_uint_t len, mp_obj_t slice, machine_uint_t *begin, machine_uint_t *end) {
machine_int_t start, stop, step;
mp_obj_slice_get(slice, &start, &stop, &step);
if (step != 1) {