| Age | Commit message (Expand) | Author |
| 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 |
| 2014-10-18 | unix, stmhal: Implement file.readinto() method. | Paul Sokolovsky |
| 2014-10-17 | unix: Make -c option parse input script as a file, as per CPython. | Damien George |
| 2014-10-13 | moduzlib: Integrate into the system. | Paul Sokolovsky |
| 2014-10-11 | Merge branch 'modure' of https://github.com/pfalcon/micropython into pfalcon-... | Damien George |
| 2014-10-11 | unix: Update comment MICROPY_GCREGS_SETJMP (untested -> undertested). | Paul Sokolovsky |
| 2014-10-11 | unix: Add comment about needed dependencies for MICROPY_FORCE_32BIT. | Paul Sokolovsky |
| 2014-10-11 | modure: Initial module, using re1.5 (which is based on re1 codebase). | Paul Sokolovsky |
| 2014-10-09 | unix: Rename "microsocket" module to "usocket". | Paul Sokolovsky |
| 2014-10-07 | Allow real memory errors (from locked gc) to be reported with traceback. | Dave Hylands |
| 2014-10-05 | unix: Detect and print compile error. | Damien George |
| 2014-10-03 | py: Change [u]int to mp_[u]int_t in qstr.[ch], and some other places. | Damien George |
| 2014-10-01 | unix: Do a proper clean-up on sys.exit/SystemExit. | Damien George |
| 2014-09-29 | unix: Remove unnecessary #defines from config. | Damien George |
| 2014-09-25 | py: For malloc and vstr functions, use size_t exclusively for int type. | Damien George |
| 2014-09-23 | Clean up logical flow for setting LDFLAGS to build for Linux and OSX | blmorris |
| 2014-09-22 | Incorporate change in assignment logic suggested by dhylands | blmorris |
| 2014-09-22 | Fix unix/Makefile to build on OSX | blmorris |
| 2014-09-17 | py: Add native json printing using existing print framework. | Damien George |
| 2014-09-15 | py: Move definition of mp_sys_exit to core. | Damien George |
| 2014-09-06 | unix: Fix modffi to be able to return double on x86 machines. | Damien George |
| 2014-09-06 | py: Add support for emitting native x86 machine code. | Damien George |
| 2014-09-06 | unix: Don't use -Wno-error=cpp or #warning; fix strict alias warning. | Damien George |
| 2014-09-03 | Code style/whitespace cleanup; remove obsolete headers. | Damien George |
| 2014-09-03 | unix: Auto-detect MICROPY_EMIT_X64 and MICROPY_GCREGS_SETJMP. | Damien George |
| 2014-09-03 | Add cache flush in py/asmarm.c and add new MP_PLAT_ALLOC_EXEC and MP_PLAT_FRE... | Fabian Vogt |
| 2014-08-30 | py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h. | Damien George |
| 2014-08-30 | py: Change all uint to mp_uint_t in obj.h. | Damien George |
| 2014-08-30 | py: Make tuple and list use mp_int_t/mp_uint_t. | Damien George |
| 2014-08-30 | Change some parts of the core API to use mp_uint_t instead of uint/int. | Damien George |
| 2014-08-26 | Add pip-micropython to unix make install. | Damien George |
| 2014-08-24 | py: Fix bug where GC collected native/viper/asm function data. | Damien George |
| 2014-08-24 | unix, modtermios: Make it properly configurable; fix spelling mistake. | Damien George |
| 2014-08-23 | modtermios: Add "termios" unix module, subset of CPython's. | Paul Sokolovsky |