aboutsummaryrefslogtreecommitdiff
path: root/py/objtuple.h
AgeCommit message (Expand)Author
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.Damien George
2017-08-29all: Convert mp_uint_t to mp_unary_op_t/mp_binary_op_t where appropriateDamien George
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-07-18all: Unify header guard usage.Alexander Steffen
2017-02-16py: Add iter_buf to getiter type method.Damien George
2017-02-16py/objtuple: Convert mp_uint_t to size_t where appropriate.Damien George
2015-11-29py: Add MP_ROM_* macros and mp_rom_* types and use them.Damien George
2015-04-21py: Add attrtuple object, for space-efficient tuples with attr access.Damien George
2015-04-16py: Overhaul and simplify printf/pfenv mechanism.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-08-30Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
2014-05-11py: Rename globally-accessible tuple functions, prefix with mp_obj_.Damien George
2014-05-10objnamedtuple: Support iteration.Paul Sokolovsky
2014-05-03Add license header to (almost) all files.Damien George
2014-04-17py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr.Damien George
2014-03-03namedtuple: Inherit unary/binary ops from tuple base class.Paul Sokolovsky
2014-01-15type->print(): Distinguish str() and repr() variety by passing extra param.Paul Sokolovsky
2014-01-14Add objtuple.h to allow embedding of tuples inside other objects.Paul Sokolovsky