diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-09-12 18:48:07 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-10-11 14:36:32 +0300 |
commit | c71e045165bffbbe085e407008feba3cdfda3298 (patch) | |
tree | 9ad616078a10cac425ecff7dfdd1922f1680ab46 /py/builtintables.c | |
parent | 9b6617ea8b2324993e709058dd1a74433a9001a6 (diff) |
modure: Initial module, using re1.5 (which is based on re1 codebase).
https://github.com/pfalcon/re1.5
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 |