summaryrefslogtreecommitdiffstatshomepage
path: root/py/objnamedtuple.c
Commit message (Expand)AuthorAge
* all: Remove the "STATIC" macro and just use "static" instead.Angus Gratton2024-03-07
* py/obj: Change sizeof to offsetof in mp_obj_malloc_var macro.Damien George2024-02-19
* py/misc: Change sizeof to offsetof for variable-length alloc.Jim Mussared2023-11-03
* py/obj: Convert make_new into a mp_obj_type_t slot.Jim Mussared2022-09-19
* py/obj: Merge getiter and iternext mp_obj_type_t slots.Jim Mussared2022-09-19
* py/objnamedtuple: Optimise slot RAM usage for namedtuple.Jim Mussared2022-09-19
* py/objtype: Optimise slot RAM usage for instance types.Jim Mussared2022-09-19
* py/obj: Add accessors for type slots and use everywhere.Jim Mussared2022-09-19
* py/objnamedtuple: Fix segfault with empty namedtuple.Lars Haulin2022-07-13
* py: Add option to compile without any error messages at all.Damien George2021-04-27
* all: Format code to add space after C++-style comment start.stijn2020-04-23
* all: Use MP_ERROR_TEXT for all error messages.Jim Mussared2020-04-05
* py: Use preprocessor to detect error reporting level (terse/detailed).Jim Mussared2020-04-05
* all: Reformat C and Python source code with tools/codeformat.py.Damien George2020-02-28
* py: Add mp_raise_msg_varg helper and use it where appropriate.Damien George2020-02-13
* py: Expand type equality flags to 3 separate ones, fix bool/namedtuple.Damien George2020-02-11
* py: Downcase all MP_OBJ_IS_xxx macros to make a more consistent C API.Damien George2019-02-12
* py/objnamedtuple: Allow to reuse namedtuple basic functionality.Paul Sokolovsky2017-11-20
* py/objnamedtuple: Add _asdict function if OrderedDict is supportedstijn2017-11-12
* all: Remove inclusion of internal py header files.Damien George2017-10-04
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* py/objnamedtuple: Simplify and remove use of alloca building namedtuple.Damien George2017-06-29
* py: Optimise types for common case where type has a single parent type.Damien George2017-04-12
* py: Convert mp_uint_t to size_t for tuple/list accessors.Damien George2017-03-29
* py/objnamedtuple: Use size_t where appropriate, instead of mp_uint_t.Damien George2017-03-24
* py: Use mp_raise_msg helper function where appropriate.Damien George2016-10-17
* py/objnamedtuple: Allow passing field names as a tuple.Antonin ENFRUN2016-05-23
* py: Fix passing of some wide int types to printf varg format list.Damien George2016-03-14
* py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*.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
* py: Add attrtuple object, for space-efficient tuples with attr access.Damien George2015-04-21
* py: Add %q format support to mp_[v]printf, and use it.Damien George2015-04-16
* py: Overhaul and simplify printf/pfenv mechanism.Damien George2015-04-16
* py: Combine load_attr and store_attr type methods into one (attr).Damien George2015-04-11
* objnamedtuple: Accept field list as a string.Paul Sokolovsky2015-03-23
* objnamedtuple: Check that 2nd arg to namedtuple() is a list.Paul Sokolovsky2015-03-22
* py: Fix segfault in namedtuple when name is a non-interned stringstijn2015-01-24
* py, unix: Allow to compile with -Wunused-parameter.Damien George2015-01-20
* py: Move to guarded includes, everywhere in py/ core.Damien George2015-01-01
* py: Change namedtuple error messages to reduce code size.Damien George2015-01-01
* py: Make terse_arg_mismatch a global function and use it elsewhere.Damien George2015-01-01
* objnamedtuple: Make sure to initialize type structure completely.Paul Sokolovsky2015-01-01
* py: Allow keyword arguments for namedtuplestijn2015-01-01
* py: Use sequence of strings for named tuple initializationstijn2015-01-01
* py: Make functions static where appropriate.Damien George2014-12-10
* py: Convert [u]int to mp_[u]int_t where appropriate.Damien George2014-10-03
* Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George2014-08-30
* Rename configuration variables controling Python features.Damien George2014-05-24