circuitpython/unix
Paul Sokolovsky 60a9fac8d4 unix: Initial implementation of FFI module.
Foreign Function Interface module allows to load native dynamic libraries,
call functions and access variables in them. This makes possible to write
interface modules in pure Python.

This module provides thin wrapper around libffi. ctypes compatibility might
be possible to implement on top of this module (though ctypes allow to call
functions without prototypes, which is not supported by libffi (i.e.
implementation would be inefficient))).
2014-01-29 00:24:00 +02:00
..
.gitignore Revamp qstrs: they now include length and hash. 2014-01-21 21:40:13 +00:00
Makefile unix: Initial implementation of FFI module. 2014-01-29 00:24:00 +02:00
ffi.c unix: Initial implementation of FFI module. 2014-01-29 00:24:00 +02:00
file.c Second stage of qstr revamp: uPy str object can be qstr or not. 2014-01-22 14:35:10 +00:00
main.c unix: Initial implementation of FFI module. 2014-01-29 00:24:00 +02:00
mpconfigport.h py: Add module/function/class name to exceptions. 2014-01-19 11:48:48 +00:00
qstrdefsport.h Merge branch 'master' of github.com:micropython/micropython 2014-01-21 21:54:15 +00:00
socket.c Change -Og to -O0 in unix-cpy/Makefile; cast to small int in socket.c. 2014-01-26 17:52:23 +00:00