summaryrefslogtreecommitdiffstatshomepage
path: root/py/compile.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-02-01 17:51:47 +0000
committerDamien George <damien.p.george@gmail.com>2014-02-01 17:51:47 +0000
commit87413a4d0c579ec491cf52ab8d6520430df64c7d (patch)
treec19abcbf9275c5debd4436ed5146a4aab1ad4c7d /py/compile.c
parent382b3d00ed9a2f31dcedbf65ce82cbada9b6dbdf (diff)
parent90750029df8d7fd24600cc4fe4c98a5b80731f28 (diff)
downloadmicropython-87413a4d0c579ec491cf52ab8d6520430df64c7d.tar.gz
micropython-87413a4d0c579ec491cf52ab8d6520430df64c7d.zip
Merge branch 'fun-defargs' of github.com:pfalcon/micropython into pfalcon-fun-defargs
Diffstat (limited to 'py/compile.c')
-rw-r--r--py/compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/compile.c b/py/compile.c
index c1a7955dcd..c4b582e2ae 100644
--- a/py/compile.c
+++ b/py/compile.c
@@ -3212,7 +3212,7 @@ mp_obj_t mp_compile(mp_parse_node_t pn, qstr source_file, bool is_repl) {
return mp_const_true;
#else
// return function that executes the outer module
- return rt_make_function_from_id(unique_code_id);
+ return rt_make_function_from_id(unique_code_id, MP_OBJ_NULL);
#endif
}
}