diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-11-20 17:51:08 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-11-20 17:51:37 +0200 |
commit | acb743da649c464c3ec2d3ec34fdaa8f64f3a51f (patch) | |
tree | 89e402d913a1863e795c741296019560c2e0363a | |
parent | 83229d3ffe5f8b6ba9c9f90e4ff0185dc0bab81b (diff) | |
download | micropython-acb743da649c464c3ec2d3ec34fdaa8f64f3a51f.tar.gz micropython-acb743da649c464c3ec2d3ec34fdaa8f64f3a51f.zip |
unix/modffi: Mark 'O' type specifier as implemented.
-rw-r--r-- | unix/modffi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/modffi.c b/unix/modffi.c index b6c2bf4e3a..12643244fd 100644 --- a/unix/modffi.c +++ b/unix/modffi.c @@ -47,9 +47,9 @@ * clashes with struct's "p" as "Pascal string"). * s - as argument, the same as "p", as return value, causes string * to be allocated and returned, instead of pointer value. + * O - mp_obj_t, passed as is (mostly useful as a callback param) * * TODO: - * O - mp_obj_t, passed as is (mostly useful as callback param) * C - callback function * * Note: all constraint specified by typecode can be not enforced at this time, |