diff options
Diffstat (limited to 'unix/modjni.c')
-rw-r--r-- | unix/modjni.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/unix/modjni.c b/unix/modjni.c index 929a0131f1..7017942564 100644 --- a/unix/modjni.c +++ b/unix/modjni.c @@ -224,6 +224,10 @@ STATIC bool py2jvalue(const char **jtypesig, mp_obj_t arg, jvalue *out) { } else { return false; } + } else if (type == &jobject_type) { + printf("TODO: Check java arg type!!\n"); + mp_obj_jobject_t *jo = arg; + out->l = jo->obj; } else { nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_TypeError, "arg type not supported")); } |