summaryrefslogtreecommitdiffstatshomepage
path: root/py/builtintables.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-10-11 18:49:02 +0100
committerDamien George <damien.p.george@gmail.com>2014-10-11 18:49:02 +0100
commit26fa3e30ec84b8ed0cb270d1eca86dcb97389a82 (patch)
tree9fc4bb3db2cc7beac7847b5caeeb7c966c2eccaa /py/builtintables.c
parent1ce916aefdaee7bca2bcf2bc4ee7e1eb75002f67 (diff)
parentf7bcce05524783ab8b47171a8634a270ca68d040 (diff)
downloadmicropython-26fa3e30ec84b8ed0cb270d1eca86dcb97389a82.tar.gz
micropython-26fa3e30ec84b8ed0cb270d1eca86dcb97389a82.zip
Merge branch 'modure' of https://github.com/pfalcon/micropython into pfalcon-modure
Diffstat (limited to 'py/builtintables.c')
-rw-r--r--py/builtintables.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/py/builtintables.c b/py/builtintables.c
index 5712a3ef56..1fd60d8177 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