summaryrefslogtreecommitdiff
path: root/extmod/moductypes.c
AgeCommit message (Expand)Author
2020-08-04Combine 'index out of range' messagesJeff Epler
2020-07-06Add license to some obvious files.Diego Elio Pettenò
2020-01-02remove unnecessary GCC pragmasRoy Hooper
2019-12-13Revert subscr signature changeRoy Hooper
2019-12-13push changesRoy Hooper
2019-11-23disable -Wunused-parameter on subscr functionsRoy Hooper
2019-11-23make ->subscr take an instance to pass when instance_subscr is called from su...Roy Hooper
2019-01-18More make_new fixes for unix buildScott Shawcroft
2018-08-16Fix esp and samdScott Shawcroft
2017-10-24Merge commit 'f869d6b2e339c04469c6c9ea3fb2fabd7bbb2d8c' into nrf2_mergeScott Shawcroft
2017-10-04all: Remove inclusion of internal py header files.Damien George
2017-08-25Initial merge of micropython v1.9.2 into circuitpython 2.0.0 (in development)...Dan Halbert
2017-08-13all: Raise exceptions via mp_raise_XXXJavier Candeira
2017-08-02py,extmod,stmhal: Use "static inline" for funcs that should be inline.Damien George
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-06-20Merge tag 'v1.9.1'2.0.0-alpha.0Scott Shawcroft
2017-04-21extmod/moductypes: Fix bigint handling for 32-bit ports.Paul Sokolovsky
2017-02-14Make mp_float_t conversions explicit to silence warnings of converting floats...Scott Shawcroft
2016-09-21extmod/uctypes: Allow full 32-bit address range.Stefan Agner
2016-09-22all: Remove 'name' member from mp_obj_module_t struct.Damien George
2016-03-19extmod/uctypes: Change param type from void* to byte*.Damien George
2016-03-19extmod/uctypes: Finish support for FLOAT32 and FLOAT64 types.Damien George
2016-03-19extmod/uctypes: Use mp_binary_get_val helper when extracting value.Damien George
2016-01-11py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*.Damien George
2016-01-11py: Change type of .make_new and .call args: mp_uint_t becomes size_t.Damien George
2016-01-10extmod: Fix uctypes size calculation for bitfieldsDave Hylands
2016-01-03uctypes: Implement assignment for scalar arrayAntonin ENFRUN
2015-12-09extmod/moductypes: sizeof operation depends on layout type of structure.Paul Sokolovsky
2015-12-04extmod/moductypes: set_aligned(): Handle INT64/UINT64.Paul Sokolovsky
2015-11-29py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George
2015-11-29py: Add MP_ROM_* macros and mp_rom_* types and use them.Damien George
2015-10-28extmod/moductypes: When dealing with UINT64, use mp_obj_new_int_from_ull().Paul Sokolovsky
2015-10-26extmod/moductypes: Implement buffer protocol.Paul Sokolovsky
2015-06-06moductypes: Swap address and descriptor args in constructor.Paul Sokolovsky
2015-04-16py: Overhaul and simplify printf/pfenv mechanism.Damien George
2015-04-11py: Combine load_attr and store_attr type methods into one (attr).Damien George
2015-01-20py, unix: Allow to compile with -Wunused-parameter.Damien George
2015-01-12py, unix, lib: Allow to compile with -Wold-style-definition.Damien George
2015-01-01extmod: Prefix py/ for includes from py core directory.Damien George
2014-12-10py: Make functions static where appropriate.Damien George
2014-12-05py: Rename mp_obj_int_get to mp_obj_int_get_truncated; fix struct.pack.Damien George
2014-11-29Use MP_DEFINE_CONST_DICT macro to define module dicts.Damien George
2014-10-30moductypes: Make .sizeof() work with bytearrays.Paul Sokolovsky
2014-10-30moductypes: When dereferencing a field which is array of uint8, use bytearray.Paul Sokolovsky
2014-10-30moductypes: Make sure we can apply .sizeof() to all aggregate types.Paul Sokolovsky
2014-10-06py: Make mp_binary_set_val work on big endian machine.Damien George
2014-09-27Fix timer overflow code.Dave Hylands
2014-09-02extmod: Fix type-punned-ptr error.Damien George
2014-08-30Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George
2014-08-12stmhal: Enable moductypes by default.Damien George