summaryrefslogtreecommitdiffstatshomepage
path: root/py/objenumerate.c
Commit message (Expand)AuthorAge
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* py: Add iter_buf to getiter type method.Damien George2017-02-16
* py: Use new code pattern for parsing kw args with mp_arg_parse_all.Damien George2016-01-13
* 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: Eliminate some cases which trigger unused parameter warnings.Damien George2015-09-04
* py: Add MICROPY_PY_BUILTINS_ENUMERATE, disable for minimal ports.Paul Sokolovsky2015-04-06
* 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
* Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George2014-08-30
* Rename machine_(u)int_t to mp_(u)int_t.Damien George2014-07-03
* py: Include mpconfig.h before all other includes.Paul Sokolovsky2014-06-21
* Prefix ARRAY_SIZE with micropython prefix MP_Emmanuel Blot2014-06-19
* Merge branch 'master' of https://github.com/micropython/micropythonDamien George2014-05-06
|\
| * py: enumerate(): Add NotImplementedError for kwargs.Paul Sokolovsky2014-05-06
* | py: Add keyword arg support to enumerate constructor.Damien George2014-05-06
|/
* Add license header to (almost) all files.Damien George2014-05-03
* py: Add MP_OBJ_STOP_ITERATION and make good use of it.Damien George2014-04-17
* Rename rt_* to mp_*.Damien George2014-03-30
* py: Rename old const type objects to mp_type_* for consistency.Damien George2014-03-29
* py: Replace mp_const_stop_iteration object with MP_OBJ_NULL.Damien George2014-03-26
* py: Clean up includes.xbe2014-03-17
* Implement proper exception type hierarchy.Damien George2014-02-15
* Change mp_obj_type_t.name from const char * to qstr.Damien George2014-02-15
* Replace global "static" -> "STATIC", to allow "analysis builds". Part 1.Paul Sokolovsky2014-02-12
* Revamp qstrs: they now include length and hash.Damien George2014-01-21
* Make VM stack grow upwards, and so no reversed args arrays.Damien George2014-01-18
* added enumerate()John R. Lenton2014-01-14