summaryrefslogtreecommitdiffstatshomepage
path: root/py/nativeglue.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-04-06 22:48:21 +0100
committerDamien George <damien.p.george@gmail.com>2015-04-06 22:48:21 +0100
commit78772ada0ddc9222c0338f94a42e33e10bb24b55 (patch)
tree2305c4f09f897c5032102b2f8c0f0b3720afb98f /py/nativeglue.c
parent282ca09f8e386f24e1e87acd3de93954b6a8035c (diff)
downloadmicropython-78772ada0ddc9222c0338f94a42e33e10bb24b55.tar.gz
micropython-78772ada0ddc9222c0338f94a42e33e10bb24b55.zip
py: Implement calling functions with *args in native emitter.
Diffstat (limited to 'py/nativeglue.c')
-rw-r--r--py/nativeglue.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/py/nativeglue.c b/py/nativeglue.c
index 674ee99d6a..ab4063014c 100644
--- a/py/nativeglue.c
+++ b/py/nativeglue.c
@@ -117,6 +117,7 @@ void *const mp_fun_table[MP_F_NUMBER_OF] = {
mp_make_function_from_raw_code,
mp_native_call_function_n_kw,
mp_call_method_n_kw,
+ mp_call_method_n_kw_var,
mp_getiter,
mp_iternext,
nlr_push,