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/mpconfig.h | |
parent | d96e6b14c94716ea261c25c57ed4cd14a686ce5b (diff) | |
download | micropython-bfdc205934d86d4c419f237bb79d1dd6ccb93406.tar.gz micropython-bfdc205934d86d4c419f237bb79d1dd6ccb93406.zip |
modubinascii: Add, with hexlify() implementation.
Diffstat (limited to 'py/mpconfig.h')
-rw-r--r-- | py/mpconfig.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/py/mpconfig.h b/py/mpconfig.h index f4f9986e4d..4bd7bfeab7 100644 --- a/py/mpconfig.h +++ b/py/mpconfig.h @@ -439,6 +439,10 @@ typedef double mp_float_t; #define MICROPY_PY_UHASHLIB (0) #endif +#ifndef MICROPY_PY_UBINASCII +#define MICROPY_PY_UBINASCII (0) +#endif + /*****************************************************************************/ /* Hooks for a port to add builtins */ |