| Age | Commit message (Expand) | Author |
| 2014-04-12 | py: Make all LOAD_FAST ops check for unbound local. | Damien George |
| 2014-04-11 | py: Change compile order for default positional and keyword args. | Damien George |
| 2014-04-10 | py: Fix VM stack overflow detection. | Damien George |
| 2014-04-10 | py: Add option to VM to detect stack overflow. | Damien George |
| 2014-04-09 | py: Clear state to MP_OBJ_NULL before executing byte code. | Damien George |
| 2014-04-09 | py: Properly implement deletion of locals and derefs, and detect errors. | Damien George |
| 2014-04-08 | py: Remove DELETE_SUBSCR opcode, combine with STORE_SUBSCR. | Damien George |
| 2014-04-08 | py: Finish implementation of all del opcodes. | Damien George |
| 2014-04-08 | py: implement UNPACK_EX byte code (for: a, *b, c = d) | Damien George |
| 2014-04-08 | py: Raise exception for unimplemented byte codes. | Damien George |
| 2014-04-06 | py: Implement more features in native emitter. | Damien George |
| 2014-04-05 | py: Change nlr_jump to nlr_raise, to aid in debugging. | Damien George |
| 2014-04-05 | py: Fix bug in DELETE_SUBSCR bytecode, decreasing sp too much. | Damien George |
| 2014-04-05 | py: Implement DELETE_SUBSCR bytecode; implement mp_obj_dict_delete. | Damien George |
| 2014-04-04 | py: Add m_malloc_fail function to handle memory allocation error. | Damien George |
| 2014-03-31 | Merge branch 'master' of github.com:micropython/micropython | Damien George |
| 2014-03-31 | py: Remove old "run time" functions that were 1 liners. | Damien George |
| 2014-03-31 | mp_resume: Dare to pass send_value of NULL. | Paul Sokolovsky |
| 2014-03-31 | py: Towards default keyword arguments. | Damien George |
| 2014-03-31 | py: Add LOAD_NULL bytecode and use it to simplify function calls. | Damien George |
| 2014-03-30 | py: Implement support for generalized generator protocol. | Paul Sokolovsky |
| 2014-03-30 | py: Implement positional and keyword args via * and **. | Damien George |
| 2014-03-30 | Merge pull request #396 from pfalcon/call-star | Damien George |
| 2014-03-30 | vm: Implement DELETE_FAST_N bytecode. | Paul Sokolovsky |
| 2014-03-30 | vm: Implement CALL_FUNCTION_VAR opcode (foo(*(1, 2, 3))). | Paul Sokolovsky |
| 2014-03-30 | Rename rt_* to mp_*. | Damien George |
| 2014-03-30 | py: Rename mp_exc_stack to mp_exc_stack_t. | Damien George |
| 2014-03-30 | py: Fix reraise logic. | Damien George |
| 2014-03-30 | vm: Save current active exception on opening new try block. | Paul Sokolovsky |
| 2014-03-30 | vm: WITH_CLEANUP: use POP_EXC_BLOCK(). | Paul Sokolovsky |
| 2014-03-29 | vm: Establish macros PUSH_EXC_BLOCK & POP_EXC_BLOCK to deal with exc stack. | Paul Sokolovsky |
| 2014-03-29 | py: Reraising exception possible only in except block. | Paul Sokolovsky |
| 2014-03-29 | vm: Elaborate comments for WITH_CLEANUP, other cosmetic fixes. | Paul Sokolovsky |
| 2014-03-29 | py: Make MP_BC_SETUP_WITH use the bytecode stack for load_method. | Damien George |
| 2014-03-29 | Merge pull request #389 from pfalcon/with-statement | Damien George |
| 2014-03-29 | py: Fix regress with GeneratorExit object becoming truly const. | Damien George |
| 2014-03-29 | py: Change mp_const_* objects to macros. | Damien George |
| 2014-03-29 | Merge pull request #383 from pfalcon/yield-from | Damien George |
| 2014-03-29 | py: Free unique_code slot for outer module. | Damien George |
| 2014-03-29 | vm: Implement "with" statement (SETUP_WITH and WITH_CLEANUP bytecodes). | Paul Sokolovsky |
| 2014-03-29 | vm: Make sure that exception triple is <type, instance, traceback>. | Paul Sokolovsky |
| 2014-03-29 | vm: Factor out exception block setup to a macro. | Paul Sokolovsky |
| 2014-03-28 | py: yield from: Elaborate GeneratorExit (gen.close()) handling. | Paul Sokolovsky |
| 2014-03-28 | py: Core "yield from" implementation. | Paul Sokolovsky |
| 2014-03-27 | py: Put n_state for bytecode in the bytecode prelude. | Damien George |
| 2014-03-27 | py: Calculate maximum exception stack size in compiler. | Damien George |
| 2014-03-26 | py: Support closures with default args. | Paul Sokolovsky |
| 2014-03-26 | py: Replace mp_const_stop_iteration object with MP_OBJ_NULL. | Damien George |
| 2014-03-26 | Merge pull request #379 from pfalcon/reraise | Damien George |
| 2014-03-26 | py: Add support for user-defined iterators via __iter__, __next__. | Damien George |