aboutsummaryrefslogtreecommitdiff
path: root/py/objgetitemiter.c
AgeCommit message (Expand)Author
2021-07-15py: Support single argument to optimised MP_OBJ_STOP_ITERATION.Damien George
2021-03-26py: Rename remaining object types to be of the form mp_type_xxx.Damien George
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.Damien George
2017-10-04all: Remove inclusion of internal py header files.Damien George
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-02-16py: Add iter_buf to getiter type method.Damien George
2016-01-23py/objgetitemiter: Typo fix in comment.Paul Sokolovsky
2015-11-29py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George
2015-08-30py/objgetitemiter: Make it_iternext() recognize IndexError.Tom Soulanille
2015-04-04py: Some trivial cosmetic changes, for code style consistency.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-05-03Add license header to (almost) all files.Damien George
2014-05-02py, unix: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky
2014-04-17py: Add MP_OBJ_STOP_ITERATION and make good use of it.Damien George
2014-04-05py: Change nlr_jump to nlr_raise, to aid in debugging.Damien George
2014-03-30py: Fix "TypeError: 'iterator' object is not iterable", doh.Paul Sokolovsky
2014-03-30Rename rt_* to mp_*.Damien George
2014-03-26py: Replace mp_const_stop_iteration object with MP_OBJ_NULL.Damien George
2014-03-17py: Clean up includes.xbe
2014-02-15Implement proper exception type hierarchy.Damien George
2014-02-15Change mp_obj_type_t.name from const char * to qstr.Damien George
2014-02-12Replace global "static" -> "STATIC", to allow "analysis builds". Part 1.Paul Sokolovsky
2014-01-25py: Implement iterator support for object that has __getitem__.Damien George