diff options
author | Damien George <damien.p.george@gmail.com> | 2014-10-22 17:37:18 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-10-22 23:20:15 +0100 |
commit | f5d69794a86f7647de3f3b3efd282ed288b1cba6 (patch) | |
tree | dd81cfcca993bad937830aa7e9cc37f8c74a753c /py/builtintables.c | |
parent | e72be1b999a3337f74a8e5a8f61705666f834d2b (diff) |
extmod: Add uheapq module.
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 0e5daf6d8..238d78872 100644 --- a/py/builtintables.c +++ b/py/builtintables.c @@ -211,6 +211,9 @@ STATIC const mp_map_elem_t mp_builtin_module_table[] = { #if MICROPY_PY_URE { MP_OBJ_NEW_QSTR(MP_QSTR_ure), (mp_obj_t)&mp_module_ure }, #endif +#if MICROPY_PY_UHEAPQ + { MP_OBJ_NEW_QSTR(MP_QSTR_uheapq), (mp_obj_t)&mp_module_uheapq }, +#endif // extra builtin modules as defined by a port MICROPY_PORT_BUILTIN_MODULES |