| Age | Commit message (Expand) | Author |
| 2014-09-08 | py: Convert [u]int to mp_[u]int_t in emit.h and associated .c files. | Damien George |
| 2014-09-04 | py: Use variable length encoded uints in more places in bytecode. | Damien George |
| 2014-08-15 | py: Allow viper to have type annotations. | Damien George |
| 2014-07-31 | py: Improve encoding scheme for line-number to bytecode map. | Damien George |
| 2014-07-12 | emitbc: Fix structure field alignment issue. | Paul Sokolovsky |
| 2014-07-03 | Rename machine_(u)int_t to mp_(u)int_t. | Damien George |
| 2014-06-30 | py: Improvements to native emitter. | Damien George |
| 2014-06-21 | py: Include mpconfig.h before all other includes. | Paul Sokolovsky |
| 2014-06-03 | py: For optimization level -O3 and higher, remove lineno info from bytecode. | Paul Sokolovsky |
| 2014-05-30 | py: Fix break from within a for loop. | Damien George |
| 2014-05-10 | py: Compress a little the bytecode emitter structure. | Damien George |
| 2014-05-10 | py, emitters: Fix dummy_data size for bytecode and thumb. | Damien George |
| 2014-05-10 | py: Rename byte_code to bytecode everywhere. | Damien George |
| 2014-05-07 | py, compiler: Improve passes; add an extra pass for native emitter. | Damien George |
| 2014-05-03 | Add license header to (almost) all files. | Damien George |
| 2014-04-27 | py: Remove unnecessary LOAD_CONST_ID bytecode. | Damien George |
| 2014-04-27 | py: Implement keyword-only args. | Damien George |
| 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: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. | Damien George |
| 2014-04-13 | py: Fix up source-line calculation. | Damien George |
| 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 |
| 2014-04-10 | py: Simplify stack get/set to become stack adjust in emitters. | Damien George |
| 2014-04-10 | py, compiler: Improve stack depth counting. | Damien George |
| 2014-04-10 | py: Make sure state/stack of byte code function has at least 1 slot. | Damien George |
| 2014-04-10 | py: Make labels unsigned ints (converted from int). | Damien George |
| 2014-04-09 | py: Properly implement deletion of locals and derefs, and detect errors. | Damien George |
| 2014-04-09 | py, compile: Combine have_star_arg, have_dbl_star_arg into star_flags. | Damien George |
| 2014-04-09 | py, compiler: Clean up and compress scope/compile structures. | 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-02 | py: Move to Python 3.4.0 compatibility. | Damien George |
| 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-31 | py: Rename and reorder parameters in emit_make_function/closure. | Damien George |
| 2014-03-30 | Rename rt_* to mp_*. | Damien George |
| 2014-03-27 | py: Rename emit_pre so they have globally unique names. | Damien George |
| 2014-03-27 | py: Factor out code from runtime.c to emitglue.c. | Damien George |
| 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-17 | py: Clean up includes. | xbe |
| 2014-02-20 | emitbc: Correct buffer sizes for varlen int encoding. | Paul Sokolovsky |
| 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-16 | Support passing positional args as keywords to bytecode functions. | Paul Sokolovsky |
| 2014-02-15 | py: Pass all scope flags through to runtime. | Damien George |
| 2014-02-12 | Replace global "static" -> "STATIC", to allow "analysis builds". Part 2. | Paul Sokolovsky |