Skip to content
Snippets Groups Projects
Commit 00785613 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

modffi: Support void (None) return value for Python callback functions.

parent 7a4765db
No related branches found
No related tags found
No related merge requests found
......@@ -211,8 +211,10 @@ STATIC void call_py_func(ffi_cif *cif, void *ret, void** args, mp_obj_t func) {
}
mp_obj_t res = mp_call_function_n_kw(func, cif->nargs, 0, pyargs);
if (res != mp_const_none) {
*(ffi_arg*)ret = mp_obj_int_get_truncated(res);
}
}
STATIC mp_obj_t mod_ffi_callback(mp_obj_t rettype_in, mp_obj_t func_in, mp_obj_t paramtypes_in) {
const char *rettype = mp_obj_str_get_str(rettype_in);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment