diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-11-22 01:19:13 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-11-22 14:47:46 +0200 |
commit | f4b19c873f2b026aa3d0d5c880d0605c9a40f38f (patch) | |
tree | 4b8f9a72faf267fcef94142ac85abb91aa85a172 /py/builtintables.c | |
parent | df242facdcd0702bb7ae8c005eb8e8bcac5255f9 (diff) |
moduhashlib: Initial module skeleton.
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 b0d20417e..1777838e0 100644 --- a/py/builtintables.c +++ b/py/builtintables.c @@ -221,6 +221,9 @@ STATIC const mp_map_elem_t mp_builtin_module_table[] = { #if MICROPY_PY_UHEAPQ { MP_OBJ_NEW_QSTR(MP_QSTR_uheapq), (mp_obj_t)&mp_module_uheapq }, #endif +#if MICROPY_PY_UHASHLIB + { MP_OBJ_NEW_QSTR(MP_QSTR_uhashlib), (mp_obj_t)&mp_module_uhashlib }, +#endif // extra builtin modules as defined by a port MICROPY_PORT_BUILTIN_MODULES |