| Age | Commit message (Expand) | Author |
| 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 |
| 2014-03-26 | vm: Implement raise statement w/o args (reraising last exception). | Paul Sokolovsky |
| 2014-03-23 | py: Implement support for "except Exception as var" clause. | Paul Sokolovsky |
| 2014-03-23 | vm: Abstract working with tagged pointers in VM using macro accessors. | Paul Sokolovsky |
| 2014-03-22 | py: Fix int -> machine_uint_t. | Damien George |
| 2014-03-22 | objgenerator: Implement .throw() method to throw exceptions into generator. | Paul Sokolovsky |
| 2014-03-22 | objgenerator: Keep exception stack within generator object, like value stack. | Paul Sokolovsky |
| 2014-03-17 | py: Clean up includes. | xbe |
| 2014-02-20 | py: Fix type of integer in decoding int. | Damien George |
| 2014-02-19 | Bytecode int varlen encoding: support arbitrary values for signed ints too. | Paul Sokolovsky |
| 2014-02-19 | Bytecode uint varlen encoding: support arbitrary values. | Paul Sokolovsky |
| 2014-02-15 | py: VM never throws an exception, instead returns a status and value. | Damien George |
| 2014-02-15 | Implement proper exception type hierarchy. | Damien George |
| 2014-02-14 | py: Fix IMPORT_STAR, needs to pop the stack. | Damien George |
| 2014-02-14 | Implement "from module import *" construct. | Paul Sokolovsky |
| 2014-02-01 | py: Tidy up BINARY_OPs; negation done by special NOT bytecode. | Damien George |
| 2014-02-01 | py: Implement break/continue from an exception with finally. | Damien George |
| 2014-02-01 | py: mp_execute_byte_code has 2 arg arrays, for more efficient default params. | Damien George |
| 2014-02-01 | Merge branch 'fun-defargs' of github.com:pfalcon/micropython into pfalcon-fun... | Damien George |
| 2014-02-01 | Implement default function arguments (for Python functions). | Paul Sokolovsky |
| 2014-02-01 | Add exception stack unwind support for RETURN_VALUE. | Paul Sokolovsky |