| Age | Commit message (Expand) | Author |
| 2014-10-26 | py: Fix VM dispatch following a pending exception check. | Damien George |
| 2014-10-25 | py: Add mp_pending_exception global variable, for VM soft interrupt. | Damien George |
| 2014-10-25 | py: Compress load-int, load-fast, store-fast, unop, binop bytecodes. | Damien George |
| 2014-09-04 | py: Use variable length encoded uints in more places in bytecode. | Damien George |
| 2014-08-26 | py: Fix line number printing for file with 1 line. | Damien George |
| 2014-07-31 | py: Improve encoding scheme for line-number to bytecode map. | Damien George |
| 2014-07-03 | Rename machine_(u)int_t to mp_(u)int_t. | Damien George |
| 2014-06-08 | Merge branch 'alloca' of github.com:marcusva/micropython into marcusva-alloca | Damien George |
| 2014-06-07 | py: Merge mp_execute_bytecode into fun_bc_call. | Damien George |
| 2014-06-07 | - FreeBSD provides alloca() via stdlib.h, in contrast to Linux and Windows | Marcus von Appen |
| 2014-06-03 | vm: If there's no lineno info, set lineno in traceback to 0, not 1. | Paul Sokolovsky |
| 2014-06-01 | py: Add option to disable set() object (enabled by default). | Damien George |
| 2014-06-01 | Rename bultins config variables to MICROPY_PY_BUILTINS_*. | Damien George |
| 2014-06-01 | py, vm: Replace save_ip, save_sp with code_state->{ip, sp}. | Damien George |
| 2014-06-01 | Merge branch 'vm-alloca' of github.com:pfalcon/micropython into pfalcon-vm-al... | Damien George |
| 2014-05-31 | py: Fix stack underflow with optimised for loop. | Damien George |
| 2014-05-31 | vm: Factor out structure with code execution state and pass it around. | Paul Sokolovsky |
| 2014-05-31 | vm: Don't unconditionally allocate state on stack, do that only if needed. | Paul Sokolovsky |
| 2014-05-31 | vm: Detect stack underflow in addition to overflow. | Paul Sokolovsky |
| 2014-05-31 | py: Reformat few long functions argument lists for clarity. | Paul Sokolovsky |
| 2014-05-30 | py: Fix break from within a for loop. | Damien George |
| 2014-05-28 | py: Implement long int parsing in int(...). | Damien George |
| 2014-05-25 | py, vm: Where possible, make variables local to each opcode. | Damien George |
| 2014-05-25 | objslice: Support arbitrary objects start, stop, and step. | Paul Sokolovsky |
| 2014-05-24 | Rename configuration variables controling Python features. | Damien George |
| 2014-05-21 | Tidy up some configuration options. | Damien George |
| 2014-05-13 | py, unix: Add copyright for modules I worked closely on. | Paul Sokolovsky |
| 2014-05-11 | py: Don't expect that type->getiter() always returns iterator, check for NULL. | Paul Sokolovsky |
| 2014-05-10 | py: Rename byte_code to bytecode everywhere. | Damien George |
| 2014-05-07 | py: Improve native emitter; now supports more opcodes. | Damien George |
| 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-04-27 | py: Remove unnecessary LOAD_CONST_ID bytecode. | Damien George |
| 2014-04-27 | py: Eliminate 'op' variable in VM dispatch loop. | Damien George |
| 2014-04-24 | py, vm: Fix recent bug where state is freed too early. | Damien George |
| 2014-04-24 | py, vm: Free heap-allocated state if it was allocated on the heap. | Damien George |
| 2014-04-23 | vm: Add rudimentary bytecode execution tracing capability. | Paul Sokolovsky |
| 2014-04-20 | py: Wrap #if's around emitter functions that are used only by emitcpy. | Damien George |
| 2014-04-20 | py: Making closures now passes pointer to stack, not a tuple for vars. | Damien George |
| 2014-04-17 | py: Rename USE_COMPUTED_GOTOS to USE_COMPUTED_GOTO and enable on stmhal. | Damien George |
| 2014-04-17 | py: Add MP_OBJ_STOP_ITERATION and make good use of it. | Damien George |
| 2014-04-17 | py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. | Damien George |
| 2014-04-17 | py: Tidy up variables in VM, probably fixes subtle bugs. | Damien George |
| 2014-04-15 | Rename header file. | AZ Huang |
| 2014-04-15 | Move entry_table to separated header file. | AZ Huang |
| 2014-04-14 | Make USE_COMPUTED_GOTO a config option in mpconfig.h. | Damien George |
| 2014-04-15 | Use computed goto instead of switching op-codes. | AZ Huang |
| 2014-04-13 | py: Remove unique_codes from emitglue.c. Replace with pointers. | Damien George |
| 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 |