| Age | Commit message (Expand) | Author |
| 2015-01-12 | py, unix, lib: Allow to compile with -Wold-style-definition. | Damien George |
| 2015-01-12 | py: Can compile with -Wmissing-declarations and -Wmissing-prototypes. | Damien George |
| 2015-01-12 | py, unix: Allow to compile with -Wdouble-promotion. | Damien George |
| 2015-01-10 | py: Add config option MICROPY_COMP_MODULE_CONST for module consts. | Damien George |
| 2015-01-09 | py: Add MICROPY_PY_MICROPYTHON_MEM_INFO to enable mem-info funcs. | Damien George |
| 2015-01-09 | py: Disable stack checking by default; enable on most ports. | Damien George |
| 2015-01-08 | unix: Allow to compile with float support disabled. | Damien George |
| 2015-01-08 | Remove obsolete bss-related code/build features | stijn |
| 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-03 | unix: Enable -fno-crossjumping for fast build. | Paul Sokolovsky |
| 2015-01-01 | unix: Prefix includes with py/; remove need for -I../py. | Damien George |
| 2015-01-01 | py: Move to guarded includes, everywhere in py/ core. | Damien George |
| 2015-01-01 | py: Add basic framework for issuing compile/runtime warnings. | Paul Sokolovsky |
| 2014-12-29 | py: Add include guards to mpconfig,misc,qstr,obj,runtime,parsehelper. | Damien George |
| 2014-12-27 | py: Allow to properly disable builtin "set" object. | Damien George |
| 2014-12-27 | Makefiles: Support py/*.h includes per #1022. | Paul Sokolovsky |
| 2014-12-23 | unix, windows: Add _os.system() call. | Paul Sokolovsky |
| 2014-12-19 | unix/windows: Make sure that process exit code is portable 8-bit value. | Paul Sokolovsky |
| 2014-12-17 | unix: Rename "time" module to "utime" to allow extensibility. | Paul Sokolovsky |
| 2014-12-16 | modffi: Support void (None) return value for Python callback functions. | Paul Sokolovsky |
| 2014-12-15 | modffi: 64-bit cleanness (fixes actual bug in callback arg handling). | Paul Sokolovsky |
| 2014-12-14 | unix: Enable Thumb2 and ARM emitters by default on corresponding archs. | Paul Sokolovsky |
| 2014-12-10 | py: Make functions static where appropriate. | Damien George |
| 2014-12-10 | unix: add unlink function to os module | Nikita Nazarenko |
| 2014-12-09 | py: Allow builtins to be overridden. | Damien George |
| 2014-12-08 | modsys: Add sys.print_exception(exc, file=sys.stdout) function. | Paul Sokolovsky |
| 2014-12-05 | py: Rename mp_obj_int_get to mp_obj_int_get_truncated; fix struct.pack. | Damien George |
| 2014-12-05 | py: Optimise lexer by exposing lexer type. | Damien George |
| 2014-12-01 | modmicropython: Move mem_info() and qstr_info() functions from unix port. | Paul Sokolovsky |
| 2014-11-29 | Use MP_DEFINE_CONST_DICT macro to define module dicts. | Damien George |
| 2014-11-29 | modubinascii: Add, with hexlify() implementation. | Paul Sokolovsky |
| 2014-11-22 | moduhashlib: Initial module skeleton. | Paul Sokolovsky |
| 2014-11-16 | py: Make stream seek correctly check for ioctl fn; add seek for textio. | Damien George |
| 2014-11-17 | stream: Implement seek operation support via ioctl, wrapped in generic method. | Paul Sokolovsky |
| 2014-11-05 | unix: Allow -X heapsize number take 'w' specifier for word size adjustment. | Paul Sokolovsky |
| 2014-11-05 | unix: fast: Set initial module dict size big to have high pystone score. | Paul Sokolovsky |
| 2014-11-02 | unix: Provide "fast" target to build interpreter for benchmarking. | Paul Sokolovsky |
| 2014-10-31 | py: Make gc.enable/disable just control auto-GC; alloc is still allowed. | Damien George |
| 2014-10-29 | Add -Wpointer-arith flag to prevent problems with pointer arithmetic on void* | stijn |
| 2014-10-26 | unix: Make -v dump memory info at exit. | Paul Sokolovsky |
| 2014-10-26 | unix: Implement -m option (execute module from stdlib). | Paul Sokolovsky |
| 2014-10-26 | unix/windows: Disable sigaction on windows port. | Damien George |
| 2014-10-25 | py: Add mp_pending_exception global variable, for VM soft interrupt. | Damien George |
| 2014-10-25 | py: Implement compile builtin, enabled only on unix port. | Damien George |
| 2014-10-25 | unix: Allow -X heapsize= option take numbers with K & M suffixes. | Paul Sokolovsky |
| 2014-10-24 | py: Improve memory usage debugging; better GC AT dumping. | Damien George |
| 2014-10-23 | py: Add builtin memoryview object (mostly using array code). | Damien George |
| 2014-10-22 | extmod: Add uheapq module. | Damien George |
| 2014-10-21 | Implement kwargs for builtin open() and _io.FileIO | stijn |