diff options
author | Damien <damien.p.george@gmail.com> | 2013-10-05 14:17:09 +0100 |
---|---|---|
committer | Damien <damien.p.george@gmail.com> | 2013-10-05 14:17:09 +0100 |
commit | 4b03e77d4a0ec46467fe501636e6eeeb79e03ab9 (patch) | |
tree | 063284dc5a1295976fc22a715771db5199cfaea1 /py/main.c | |
parent | 054848a1b8aa7e52f3c70e86cc4dc56b565ea830 (diff) | |
download | micropython-4b03e77d4a0ec46467fe501636e6eeeb79e03ab9.tar.gz micropython-4b03e77d4a0ec46467fe501636e6eeeb79e03ab9.zip |
Factorise EMIT_COMMON calls, mostly into emit_pass1.
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 (1) { + if (0) { // execute it py_obj_t module_fun = rt_make_function_from_id(1); if (module_fun != py_const_none) { |