| Age | Commit message (Expand) | Author |
| 2017-07-07 | py/objgenerator: Allow to hash generators and generator instances. | Damien George |
| 2017-06-09 | py: Provide mp_decode_uint_skip() to help reduce stack usage. | Damien George |
| 2017-03-28 | py: Use mp_raise_TypeError/mp_raise_ValueError helpers where possible. | Damien George |
| 2017-03-17 | py: Provide mp_decode_uint_value to help optimise stack usage. | Damien George |
| 2017-03-17 | py: Reduce size of mp_code_state_t structure. | Damien George |
| 2017-02-16 | py: Add iter_buf to getiter type method. | Damien George |
| 2017-01-17 | py/objgenerator: Don't raise RuntimeError if GeneratorExit ignored. | Damien George |
| 2017-01-17 | py/objgenerator: When throwing an object, don't make an exc instance. | Damien George |
| 2016-10-17 | py: Use mp_raise_msg helper function where appropriate. | Damien George |
| 2016-08-27 | py: Rename struct mp_code_state to mp_code_state_t. | Damien George |
| 2016-08-12 | py: Get rid of assert() in method argument checking functions. | Paul Sokolovsky |
| 2016-04-28 | py/vm: "yield from" didn't handle MP_OBJ_STOP_ITERATION optimization. | Paul Sokolovsky |
| 2016-01-11 | py: Change type signature of builtin funs that take variable or kw args. | Damien George |
| 2016-01-11 | py: Change type of .make_new and .call args: mp_uint_t becomes size_t. | Damien George |
| 2015-11-29 | py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. | Damien George |
| 2015-11-29 | py: Add MP_ROM_* macros and mp_rom_* types and use them. | Damien George |
| 2015-11-13 | py: Add constant table to bytecode. | Damien George |
| 2015-11-13 | py: Reorganise bytecode layout so it's more structured, easier to edit. | Damien George |
| 2015-05-11 | objgenerator: Can optimize StopIteration to STOP_ITERATION only if arg is None. | Paul Sokolovsky |
| 2015-05-11 | objgenerator: If generator yielded STOP_ITERATION value, it's stopped. | Paul Sokolovsky |
| 2015-04-16 | py: Add %q format support to mp_[v]printf, and use it. | Damien George |
| 2015-04-16 | py: Overhaul and simplify printf/pfenv mechanism. | Damien George |
| 2015-04-07 | py: Implement full func arg passing for native emitter. | Damien George |
| 2015-03-20 | py: Allow retrieving a function's __name__. | stijn |
| 2015-01-20 | py, unix: Allow to compile with -Wunused-parameter. | Damien George |
| 2015-01-14 | py: Add "default" to switches to allow better code flow analysis. | Damien George |
| 2015-01-01 | py: Move to guarded includes, everywhere in py/ core. | Damien George |
| 2014-12-10 | py: Make functions static where appropriate. | Damien George |
| 2014-10-25 | py: Store bytecode arg names in bytecode (were in own array). | Damien George |
| 2014-09-04 | py: Use variable length encoded uints in more places in bytecode. | Damien George |
| 2014-08-30 | Change some parts of the core API to use mp_uint_t instead of uint/int. | Damien George |
| 2014-07-03 | Rename machine_(u)int_t to mp_(u)int_t. | Damien George |
| 2014-06-11 | objgenerator: Finish refactor to use mp_setup_code_state(). | Paul Sokolovsky |
| 2014-06-11 | objgenerator: First iteration of refactor to use mp_setup_code_state(). | Paul Sokolovsky |
| 2014-06-07 | py: Merge mp_execute_bytecode into fun_bc_call. | Damien George |
| 2014-05-31 | vm: Factor out structure with code execution state and pass it around. | Paul Sokolovsky |
| 2014-05-31 | py: Reformat few long functions argument lists for clarity. | Paul Sokolovsky |
| 2014-05-17 | py: More mp_identity usage. | Paul Sokolovsky |
| 2014-05-13 | py, unix: Add copyright for modules I worked closely on. | Paul Sokolovsky |
| 2014-05-10 | py: Rename byte_code to bytecode everywhere. | Damien George |
| 2014-05-05 | py: Comment exc_state member from mp_obj_gen_instance_t as it gives trouble | stijn |
| 2014-05-03 | Add license header to (almost) all files. | Damien George |
| 2014-05-02 | py, unix: Make "mpconfig.h" be first included, as other headers depend on it. | Paul Sokolovsky |
| 2014-05-01 | objgenerator: .print(): Output real underlying function name. | Paul Sokolovsky |
| 2014-04-17 | py: Add MP_OBJ_STOP_ITERATION and make good use of it. | Damien George |
| 2014-04-17 | py: Simplify objfun/objgenerator connection, no need to call bc_get. | Damien George |
| 2014-04-17 | objgenerator: Generator must execute in its defining lexical context. | Paul Sokolovsky |
| 2014-04-09 | py: Clear state to MP_OBJ_NULL before executing byte code. | Damien George |
| 2014-04-09 | py: Generators can have their locals closed over. | Damien George |
| 2014-04-05 | py: Change nlr_jump to nlr_raise, to aid in debugging. | Damien George |