mirror of
https://github.com/micropython/micropython.git
synced 2026-01-05 03:30:14 +01:00
py: Make tuple and list use mp_int_t/mp_uint_t.
Part of code cleanup, to resolve issue #50.
This commit is contained in:
@@ -464,7 +464,7 @@ void mp_obj_exception_get_traceback(mp_obj_t self_in, mp_uint_t *n, mp_uint_t **
|
||||
*n = 0;
|
||||
*values = NULL;
|
||||
} else {
|
||||
uint n2;
|
||||
mp_uint_t n2;
|
||||
mp_obj_list_get(self->traceback, &n2, (mp_obj_t**)values);
|
||||
*n = n2;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user