diff options
author | Damien George <damien.p.george@gmail.com> | 2014-10-11 18:55:44 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-10-11 18:55:44 +0100 |
commit | 37671c9a973d20248048343cb168c50f6bbca959 (patch) | |
tree | 1bac386c924a0a8bd289bd4a36f3af9974283a33 /py/builtintables.c | |
parent | 1ce916aefdaee7bca2bcf2bc4ee7e1eb75002f67 (diff) | |
parent | dd5ee9ff9c67575897ccfa8b4e8b10abecbe9800 (diff) |
Merge branch 'pfalcon-modure'
Diffstat (limited to 'py/builtintables.c')
-rw-r--r-- | py/builtintables.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/py/builtintables.c b/py/builtintables.c index 5712a3ef5..1fd60d817 100644 --- a/py/builtintables.c +++ b/py/builtintables.c @@ -209,6 +209,9 @@ STATIC const mp_map_elem_t mp_builtin_module_table[] = { #if MICROPY_PY_UJSON { MP_OBJ_NEW_QSTR(MP_QSTR_ujson), (mp_obj_t)&mp_module_ujson }, #endif +#if MICROPY_PY_URE + { MP_OBJ_NEW_QSTR(MP_QSTR_ure), (mp_obj_t)&mp_module_ure }, +#endif // extra builtin modules as defined by a port MICROPY_PORT_BUILTIN_MODULES |