aboutsummaryrefslogtreecommitdiff
path: root/extmod/moductypes.c
AgeCommit message (Expand)Author
2022-06-02all: Remove third argument to MP_REGISTER_MODULE.Damien George
2022-05-18extmod: Make extmod modules use MP_REGISTER_MODULE.Jim Mussared
2022-05-03all: Use mp_obj_malloc everywhere it's applicable.Jim Mussared
2021-05-06extmod/moductypes: Fix size and offset calculation for ARRAY of FLOAT32.Damien George
2021-05-06extmod/moductypes: Replace numbers with macro constants.Damien George
2021-05-06extmod/moductypes: Remove double blank lines and debugging printf's.Damien George
2021-05-06extmod: Remove old comments used for auto-doc generation.Damien George
2020-11-11extmod/moductypes: Fix storing to (U)INT64 arrays on 32-bit archs.Damien George
2020-10-22py, extmod: Introduce and use MP_FALLTHROUGH macro.Emil Renner Berthing
2020-06-24extmod/moductypes: Use mp_obj_is_dict_or_ordereddict to simplify code.Damien George
2020-04-23all: Format code to add space after C++-style comment start.stijn
2020-04-18all: Fix implicit conversion from double to float.stijn
2020-04-18all: Fix implicit floating point promotion.stijn
2020-04-18Revert "all: Fix implicit casts of float/double, and signed comparison."stijn
2020-04-13all: Clean up error strings to use lowercase and change cannot to can't.Damien George
2020-04-05all: Use MP_ERROR_TEXT for all error messages.Jim Mussared
2020-03-30all: Fix implicit casts of float/double, and signed comparison.David Lechner
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.Damien George
2019-11-05all: Convert nlr_raise(mp_obj_new_exception_msg(x)) to mp_raise_msg(x).Damien George
2019-09-02py/modstruct: Fix struct.pack_into with unaligned offset of native type.Damien George
2019-09-02py/modstruct: Fix struct.unpack with unaligned offset of native type.Tom McDermott
2019-02-12extmod: Convert legacy uppercase macro names to lowercase.Damien George
2018-12-10extmod/moductypes: Add aliases for native C types.Paul Sokolovsky
2018-12-10extmod/moductypes: Implement __int__ for PTR.Paul Sokolovsky
2018-10-23extmod/moductypes: Make sizeof() accept "layout" parameter.Paul Sokolovsky
2018-10-13extmod/moductypes: Accept OrderedDict as a structure description.Paul Sokolovsky
2018-10-05extmod/moductypes: Remove BITFIELD from aggregate types enum.Paul Sokolovsky
2017-10-04all: Remove inclusion of internal py header files.Damien George
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-04-21extmod/moductypes: Fix bigint handling for 32-bit ports.Paul Sokolovsky
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