commit | 8becca7c8289bbadf33abdb6b59618b214a90a30 | [log] [tgz] |
---|---|---|
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | Sat Oct 25 21:03:20 2014 +0300 |
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | Sat Oct 25 22:31:26 2014 +0300 |
tree | 1591d0ecf728fbff92e9a03a10096b9f80f4630a | |
parent | 8456cc017bc2e4a9fe063f485c3f2aa410435015 [diff] [blame] |
py: mp_builtin___import__(): Add const to arg type.
diff --git a/py/builtin.h b/py/builtin.h index 58b821b..6b44a16 100644 --- a/py/builtin.h +++ b/py/builtin.h
@@ -24,7 +24,7 @@ * THE SOFTWARE. */ -mp_obj_t mp_builtin___import__(mp_uint_t n_args, mp_obj_t *args); +mp_obj_t mp_builtin___import__(mp_uint_t n_args, const mp_obj_t *args); mp_obj_t mp_builtin_open(mp_uint_t n_args, const mp_obj_t *args, mp_map_t *kwargs); MP_DECLARE_CONST_FUN_OBJ(mp_builtin___build_class___obj);