diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-04-03 14:57:53 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-04-03 22:08:57 +0300 |
commit | 98a627dc03bc02e1b827ead8cc71b02259731551 (patch) | |
tree | d6c57e86f9a95c2aeeb65eec6d9eb3e78461a0d9 /unix-cpy | |
parent | 8270e3853dc167d2d7946bb0de7a0f0bb2adde48 (diff) | |
download | micropython-98a627dc03bc02e1b827ead8cc71b02259731551.tar.gz micropython-98a627dc03bc02e1b827ead8cc71b02259731551.zip |
py: Add "io" module.
So far just includes "open" function, which should be supplied by a port.
TODO: Make the module #ifdef'ed.
Diffstat (limited to 'unix-cpy')
-rw-r--r-- | unix-cpy/mpconfigport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unix-cpy/mpconfigport.h b/unix-cpy/mpconfigport.h index 6351f0c4fe..752df4f49b 100644 --- a/unix-cpy/mpconfigport.h +++ b/unix-cpy/mpconfigport.h @@ -3,6 +3,7 @@ #define MICROPY_EMIT_CPYTHON (1) #define MICROPY_ENABLE_LEXER_UNIX (1) #define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_DOUBLE) +#define MICROPY_ENABLE_MOD_IO (0) // type definitions for the specific machine |