extmod: Add uheapq module.

This commit is contained in:
Damien George
2014-10-22 17:37:18 +00:00
parent e72be1b999
commit f5d69794a8
9 changed files with 192 additions and 0 deletions

View File

@@ -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