| Age | Commit message (Expand) | Author |
| 2015-04-11 | py: Combine load_attr and store_attr type methods into one (attr). | Damien George |
| 2015-04-09 | py: Adjust some spaces in code style/format, purely for consistency. | Damien George |
| 2015-04-09 | py: Fix msvc warning '*/ found outside of comment' | stijn |
| 2015-04-02 | py: Add finer configuration of static funcs when not in stackless mode. | Damien George |
| 2015-04-03 | vm: Support strict stackless mode, with proper exception reporting. | Paul Sokolovsky |
| 2015-04-03 | vm: Implement stackless for CALL_FUNCTION_VAR_KW & CALL_METHOD_VAR_KW. | Paul Sokolovsky |
| 2015-04-03 | vm: Stackless support for MP_BC_CALL_METHOD. | Paul Sokolovsky |
| 2015-04-03 | vm: If there's no heap to call function in stackless manner, call via C stack. | Paul Sokolovsky |
| 2015-04-03 | vm: Initial support for calling bytecode functions w/o C stack ("stackless"). | Paul Sokolovsky |
| 2015-03-26 | py: Add optional support for descriptors' __get__ and __set__ methods. | stijn |
| 2015-03-25 | py: Clean up some logic in VM to remove assert(0)'s. | Damien George |
| 2015-02-26 | py: Small optimisation of logic flow in BC_WITH_CLEANUP bytecode. | Damien George |
| 2015-02-10 | py: Reuse value stack in VM WITH_CLEANUP opcode to reduce C-stack size. | Damien George |
| 2015-02-08 | py: Parse big-int/float/imag constants directly in parser. | Damien George |
| 2015-01-13 | py: Add load_const_obj to emitter, add LOAD_CONST_OBJ to bytecode. | Damien George |
| 2015-01-07 | py: Add option to cache map lookup results in bytecode. | Damien George |
| 2015-01-07 | py: Put all global state together in state structures. | Damien George |
| 2015-01-01 | py: Move to guarded includes, everywhere in py/ core. | Damien George |
| 2014-12-29 | py: In VM, for selective ip saving, store 1 byte past last opcode. | Damien George |
| 2014-12-28 | vm: Record exception ip only for instructions where exceptions may happen. | Paul Sokolovsky |
| 2014-12-22 | py: Reduce size of VM exception stack element by 1 machine word. | Damien George |
| 2014-12-12 | py: Fix label printing in showbc; print sp in vm trace. | Damien George |
| 2014-12-02 | py, vm: Make unum a local variable for each opcode that uses it. | Damien George |
| 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 |