diff options
author | Damien George <damien.p.george@gmail.com> | 2014-05-11 18:00:45 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-05-11 18:00:45 +0100 |
commit | 2323ef9182f9b57b96c7b4e1b414c18591a00bff (patch) | |
tree | 6a32d321cc054691acb9c2d0b5082fd9df2a484c /py/objexcept.c | |
parent | c59af52e84cae6be29e5a52e1ec1c3259ffec09a (diff) |
py: Rename globally-accessible tuple functions, prefix with mp_obj_.
Likely there are other functions that should be renamed, but this is a
start.
Diffstat (limited to 'py/objexcept.c')
-rw-r--r-- | py/objexcept.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objexcept.c b/py/objexcept.c index 26997ef83..60b3565f6 100644 --- a/py/objexcept.c +++ b/py/objexcept.c @@ -76,7 +76,7 @@ STATIC void mp_obj_exception_print(void (*print)(void *env, const char *fmt, ... return; } } - tuple_print(print, env, o->args, kind); + mp_obj_tuple_print(print, env, o->args, kind); } mp_obj_t mp_obj_exception_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const mp_obj_t *args) { |