commit | ee3fd46f1383e984c968c4a82d634d7b0cea49b8 | [log] [tgz] |
---|---|---|
author | Damien George <damien.p.george@gmail.com> | Sat May 24 23:03:12 2014 +0100 |
committer | Damien George <damien.p.george@gmail.com> | Sat May 24 23:03:12 2014 +0100 |
tree | 76eb38f9015df5d003f646ce019745426365021c | |
parent | d0ceb04b90ca7edd7e45b8eff1cdebdfa20a0cf8 [diff] [blame] |
Rename configuration variables controling Python features. Now of the form MICROPY_PY_*. See issue #35.
diff --git a/py/builtinimport.c b/py/builtinimport.c index d2b1870..fa1a839 100644 --- a/py/builtinimport.c +++ b/py/builtinimport.c
@@ -73,7 +73,7 @@ // extract the list of paths uint path_num = 0; mp_obj_t *path_items; -#if MICROPY_ENABLE_MOD_SYS +#if MICROPY_PY_SYS mp_obj_list_get(mp_sys_path, &path_num, &path_items); #endif