diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-08-08 22:51:40 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-08-13 00:26:19 +0300 |
commit | 510296f25ae53e5732fe98cdd4b68bfeea15204a (patch) | |
tree | fafb9e6e4d1d0a60a074c0352455f878e6cb8ce2 /py/builtintables.c | |
parent | 75ec22bf11301909ddc70c817eb0050ea45c5e34 (diff) | |
download | micropython-510296f25ae53e5732fe98cdd4b68bfeea15204a.tar.gz micropython-510296f25ae53e5732fe98cdd4b68bfeea15204a.zip |
modzlibd: Decompress part of "zlib" module, based on miniz tinfl.c .
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 0f0cfcbc72..e55e93b33a 100644 --- a/py/builtintables.c +++ b/py/builtintables.c @@ -196,6 +196,9 @@ STATIC const mp_map_elem_t mp_builtin_module_table[] = { #if MICROPY_PY_UCTYPES { MP_OBJ_NEW_QSTR(MP_QSTR_uctypes), (mp_obj_t)&mp_module_uctypes }, #endif +#if MICROPY_PY_ZLIBD + { MP_OBJ_NEW_QSTR(MP_QSTR_zlibd), (mp_obj_t)&mp_module_zlibd }, +#endif // extra builtin modules as defined by a port MICROPY_PORT_BUILTIN_MODULES |