diff options
author | Damien <damien.p.george@gmail.com> | 2013-10-05 18:08:26 +0100 |
---|---|---|
committer | Damien <damien.p.george@gmail.com> | 2013-10-05 18:08:26 +0100 |
commit | 6cdd3af6014b28e0b3824641e6958c144b8e2cd2 (patch) | |
tree | 04e3aa77c80acefb8ddcf936ec0173ce59e9a9dd /py/main.c | |
parent | 4b03e77d4a0ec46467fe501636e6eeeb79e03ab9 (diff) | |
download | micropython-6cdd3af6014b28e0b3824641e6958c144b8e2cd2.tar.gz micropython-6cdd3af6014b28e0b3824641e6958c144b8e2cd2.zip |
Implement built-in decorators to select emit type.
Diffstat (limited to 'py/main.c')
-rw-r--r-- | py/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ int main(int argc, char **argv) { py_lexer_free(lex); - if (0) { + if (1) { // execute it py_obj_t module_fun = rt_make_function_from_id(1); if (module_fun != py_const_none) { |