diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-11-29 06:19:30 +0200 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-11-29 13:52:47 +0000 |
commit | bfdc205934d86d4c419f237bb79d1dd6ccb93406 (patch) | |
tree | 3fb5bae6bc6ff15912e1a63c9c98f3fbe1723581 /py/builtintables.c | |
parent | d96e6b14c94716ea261c25c57ed4cd14a686ce5b (diff) | |
download | micropython-bfdc205934d86d4c419f237bb79d1dd6ccb93406.tar.gz micropython-bfdc205934d86d4c419f237bb79d1dd6ccb93406.zip |
modubinascii: Add, with hexlify() implementation.
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 1777838e0b..ebf8ddf4a7 100644 --- a/py/builtintables.c +++ b/py/builtintables.c @@ -224,6 +224,9 @@ STATIC const mp_map_elem_t mp_builtin_module_table[] = { #if MICROPY_PY_UHASHLIB { MP_OBJ_NEW_QSTR(MP_QSTR_uhashlib), (mp_obj_t)&mp_module_uhashlib }, #endif +#if MICROPY_PY_UBINASCII + { MP_OBJ_NEW_QSTR(MP_QSTR_ubinascii), (mp_obj_t)&mp_module_ubinascii }, +#endif // extra builtin modules as defined by a port MICROPY_PORT_BUILTIN_MODULES |