| Age | Commit message (Expand) | Author |
| 2015-09-04 | py: Eliminate some cases which trigger unused parameter warnings. | Damien George |
| 2015-07-14 | py: Improve allocation policy of qstr data. | Damien George |
| 2015-04-16 | py: Convert occurrences of non-debug printf to mp_printf. | Damien George |
| 2015-04-03 | py: Make heap printing compatible with 16-bit word size. | Damien George |
| 2015-02-07 | py: Put mp_sys_path, mp_sys_argv and gc_collected in mp_state_ctx_t. | Damien George |
| 2015-01-12 | py, unix, lib: Allow to compile with -Wold-style-definition. | Damien George |
| 2015-01-11 | py: Add (commented out) code to gc_dump_alloc_table for qstr info. | Damien George |
| 2015-01-08 | Remove obsolete bss-related code/build features | stijn |
| 2015-01-07 | py: Put all global state together in state structures. | Damien George |
| 2015-01-01 | py: Make GC's STACK_SIZE definition a proper MICROPY_ config variable. | Damien George |
| 2015-01-01 | py: Move to guarded includes, everywhere in py/ core. | Damien George |
| 2014-11-05 | py: Fix some macros defines; cleanup some includes. | Damien George |
| 2014-10-31 | py: Make gc.enable/disable just control auto-GC; alloc is still allowed. | Damien George |
| 2014-10-24 | py: Improve memory usage debugging; better GC AT dumping. | Damien George |
| 2014-10-23 | py: Properly free string parse-node; add assertion to gc_free. | Damien George |
| 2014-10-23 | py: Clean up edge cases of malloc/realloc/free. | Damien George |
| 2014-10-17 | py: Add more debug printing code in gc_dump_alloc_table. | Damien George |
| 2014-10-16 | py: Take gc_pool_start out of bss section, to reclaim 1st block of heap. | Damien George |
| 2014-10-15 | py: Fix GC realloc issue, where memory chunks were never shrunk. | Damien George |
| 2014-08-28 | py, gc: Further reduce heap fragmentation with new, faster gc alloc. | Damien George |
| 2014-08-28 | py: Reduce fragmentation of GC heap. | Damien George |
| 2014-08-22 | py: Speed up GC allocation. | Damien George |
| 2014-08-08 | py: Fix bug where GC finaliser table was not completely zeroed out. | Damien George |
| 2014-07-03 | Rename machine_(u)int_t to mp_(u)int_t. | Damien George |
| 2014-06-30 | Try not to cause a MemoryError when raising an exception during nterrupt hand... | Dave Hylands |
| 2014-06-21 | py: Include mpconfig.h before all other includes. | Paul Sokolovsky |
| 2014-06-18 | gc: Turn off debugging info again | stijn |
| 2014-06-18 | gc: Keep debug statements at beginning of scope where possible | stijn |
| 2014-06-16 | gc: More verbose debugging | stijn |
| 2014-06-13 | py, gc: Revert ret_ptr to void*, casting to byte* for memset. | Damien George |
| 2014-06-13 | gc: Use byte* pointers instead of void* for pointer arithmetic | stijn |
| 2014-06-05 | modgc: Implement return value for gc.collect(), enable on Unix. | Paul Sokolovsky |
| 2014-05-10 | py: Compress a little the bytecode emitter structure. | Damien George |
| 2014-05-03 | Add license header to (almost) all files. | Damien George |
| 2014-04-26 | py, gc: Only zero out the extra bytes at the end of the heap chunk. | Damien George |
| 2014-04-25 | Merge branch 'master' of github.com:micropython/micropython | Damien George |
| 2014-04-25 | py, gc: Zero out newly allocated blocks in the GC. | Damien George |
| 2014-04-25 | py, gc: Fix old gc_realloc for case when NULL is passed in as ptr. | Damien George |
| 2014-04-20 | gc: gc_realloc(): Fix byte-to-block calculation. | Paul Sokolovsky |
| 2014-04-20 | py, gc: Further simplify coding-style of gc_realloc. | Damien George |
| 2014-04-20 | gc: "new" gc_realloc: Rewrite in plain C, fixing bunch of bugs. | Paul Sokolovsky |
| 2014-04-20 | gc: Recover simple gc_realloc implementation, make easier to switch between. | Paul Sokolovsky |
| 2014-04-09 | gc.c: Remove superfluous typedef (bute defined in misc.h). | Paul Sokolovsky |
| 2014-04-08 | py: Improve GC locking/unlocking, and make it part of the API. | Damien George |
| 2014-04-05 | Improve GC finalisation code; add option to disable it. | Damien George |
| 2014-04-05 | Merge pull request #425 from iabdalkader/del | Damien George |
| 2014-04-05 | Move del to locals | mux |
| 2014-04-03 | Implement del | mux |
| 2014-04-02 | gc: Uses uint defined in misc.h. | Paul Sokolovsky |
| 2014-04-02 | py: Fix up so that it can compile without float. | Damien George |