summaryrefslogtreecommitdiffstatshomepage
path: root/py/main.c
diff options
context:
space:
mode:
authorDamien <damien.p.george@gmail.com>2013-10-05 18:08:26 +0100
committerDamien <damien.p.george@gmail.com>2013-10-05 18:08:26 +0100
commit6cdd3af6014b28e0b3824641e6958c144b8e2cd2 (patch)
tree04e3aa77c80acefb8ddcf936ec0173ce59e9a9dd /py/main.c
parent4b03e77d4a0ec46467fe501636e6eeeb79e03ab9 (diff)
downloadmicropython-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/main.c b/py/main.c
index d765bc24f1..7b17c38a85 100644
--- a/py/main.c
+++ b/py/main.c
@@ -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) {