summaryrefslogtreecommitdiffstatshomepage
path: root/unix/modffi.c
Commit message (Expand)AuthorAge
* unix: Use mp_obj_str_get_str instead of mp_obj_str_get_data.Damien George2017-03-25
* py: Add iter_buf to getiter type method.Damien George2017-02-16
* unix: Use mp_raise_OSError helper function.Damien George2016-10-07
* all: Remove 'name' member from mp_obj_module_t struct.Damien George2016-09-22
* unix/modffi: Allow to compile modffi in OBJ_REPR_D mode.Damien George2016-01-15
* py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*.Damien George2016-01-11
* py: Change type signature of builtin funs that take variable or kw args.Damien George2016-01-11
* py: Change type of .make_new and .call args: mp_uint_t becomes size_t.Damien George2016-01-11
* py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George2015-11-29
* py: Add MP_ROM_* macros and mp_rom_* types and use them.Damien George2015-11-29
* unix/modffi: Mark 'O' type specifier as implemented.Paul Sokolovsky2015-11-20
* unix/modffi.c: cast first to intptr_t when casting from/to pointerVicente Olivert Riera2015-09-22
* modffi: dlsym() doesn't set errno, so use ENOENT for OSError.Paul Sokolovsky2015-08-31
* unix/modffi.c: get_buffer is allowed to return NULL if len=0.Damien George2015-05-01
* unix/modffi: Support passing float/double args.Damien George2015-04-28
* py: Overhaul and simplify printf/pfenv mechanism.Damien George2015-04-16
* modffi: Implement 'O' type handling for func arguments.Paul Sokolovsky2015-02-25
* modffi: Add toplevel func() function to create a function by pointer.Paul Sokolovsky2015-02-11
* modffi: Add .addr() method to just get symbol address.Paul Sokolovsky2015-02-06
* modffi: 's' (string) return type: handle NULL properly (return None).Paul Sokolovsky2015-01-25
* modffi: Support return values of mp_obj_t type.Paul Sokolovsky2015-01-22
* modffi: Support open own executable using open(None).Paul Sokolovsky2015-01-21
* py, unix: Allow to compile with -Wunused-parameter.Damien George2015-01-20
* py, unix: Allow to compile with -Wsign-compare.Damien George2015-01-16
* unix: Allow to compile with float support disabled.Damien George2015-01-08
* unix: Prefix includes with py/; remove need for -I../py.Damien George2015-01-01
* modffi: Support void (None) return value for Python callback functions.Paul Sokolovsky2014-12-16
* modffi: 64-bit cleanness (fixes actual bug in callback arg handling).Paul Sokolovsky2014-12-15
* py: Make functions static where appropriate.Damien George2014-12-10
* py: Rename mp_obj_int_get to mp_obj_int_get_truncated; fix struct.pack.Damien George2014-12-05
* Use MP_DEFINE_CONST_DICT macro to define module dicts.Damien George2014-11-29
* unix: Fix modffi to be able to return double on x86 machines.Damien George2014-09-06
* unix: Don't use -Wno-error=cpp or #warning; fix strict alias warning.Damien George2014-09-06
* py: Change all uint to mp_uint_t in obj.h.Damien George2014-08-30
* Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George2014-08-30
* py: Make MP_OBJ_NEW_SMALL_INT cast arg to mp_int_t itself.Damien George2014-07-31
* Rename machine_(u)int_t to mp_(u)int_t.Damien George2014-07-03
* modffi: Add special 'C' code for passing a callback function pointer.Paul Sokolovsky2014-07-01
* modffi: Support short types.Paul Sokolovsky2014-06-29
* Prefix ARRAY_SIZE with micropython prefix MP_Emmanuel Blot2014-06-19
* Change const byte* to const char* where sensible.Damien George2014-05-25
* py, unix: Add copyright for modules I worked closely on.Paul Sokolovsky2014-05-13
* Add license header to (almost) all files.Damien George2014-05-03
* unix,stmhal: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky2014-05-02
* Add ARRAY_SIZE macro, and use it where possible.Damien George2014-04-26
* unix: Workaround MP_OBJ_NEW_SMALL_INT() 64-bit issues.Paul Sokolovsky2014-04-22
* unix: OSError's args[0] should be errno numeric value.Paul Sokolovsky2014-04-22
* modffi: Don't use OSError for clearly unrelated errors.Paul Sokolovsky2014-04-22
* modffi: Describe typecodes where they differ from used by struct module.Paul Sokolovsky2014-04-22
* modffi: Update for MP_OBJ_STOP_ITERATION refactor.Paul Sokolovsky2014-04-19