| Age | Commit message (Expand) | Author |
| 2014-09-17 | py: Add 'builtins' module. | Damien George |
| 2014-09-17 | py: Add native json printing using existing print framework. | Damien George |
| 2014-09-07 | Remove skeletal modselect from extmod and just put it in stmhal. | Damien George |
| 2014-09-07 | stmhal: Implement generic select.select and select.poll. | Damien George |
| 2014-09-06 | py: Add support for emitting native x86 machine code. | Damien George |
| 2014-08-27 | Basic native ARM emitter | Fabian Vogt |
| 2014-08-26 | py: Add dispatch for user defined ==, >, <=, >=. | Damien George |
| 2014-08-15 | py: Allow viper to have type annotations. | Damien George |
| 2014-08-13 | modzlibd: Decompress part of "zlib" module, based on miniz tinfl.c . | Paul Sokolovsky |
| 2014-08-12 | py: #if guard qstrs that are optional. | Damien George |
| 2014-08-12 | py: Add .real and .imag attributes to complex numbers. | Damien George |
| 2014-08-12 | py: Implement builtin reversed() function. | Damien George |
| 2014-07-29 | Merge pull request #738 from dhylands/except-args | Damien George |
| 2014-07-28 | py: Implement __file__ attribute for modules. | Paul Sokolovsky |
| 2014-07-25 | Add support for storing args during an exception raised by an irq. | Dave Hylands |
| 2014-07-19 | py: Make print() accept "file" argument, and actually print to stream. | Paul Sokolovsky |
| 2014-07-11 | moductypes: Add symbolic constants to specify bitfield position/length. | Paul Sokolovsky |
| 2014-07-09 | moductypes: Foreign data interface module, roughly based on ctype ideas. | Paul Sokolovsky |
| 2014-07-03 | py: Implement sys.maxsize, standard way to check platform "bitness". | Paul Sokolovsky |
| 2014-06-25 | modgc: Add mem_free()/mem_alloc() methods. | Paul Sokolovsky |
| 2014-06-12 | py: Rename builtin "io" to "_io". | Paul Sokolovsky |
| 2014-06-08 | objtype: Enable __lt__ method support for instances. | Paul Sokolovsky |
| 2014-06-07 | modsys: Add optional support for sys.platform. | Paul Sokolovsky |
| 2014-06-01 | Rename bultins config variables to MICROPY_PY_BUILTINS_*. | Damien George |
| 2014-05-31 | add methods isspace(), isalpha(), isdigit(), isupper() and islower() to str | Kim Bauters |
| 2014-05-24 | Add SystemExit exception and use it in unix/ and stmhal/ ports. | Damien George |
| 2014-05-24 | Rename configuration variables controling Python features. | Damien George |
| 2014-05-24 | objstr: Implement .endswith(). | Paul Sokolovsky |
| 2014-05-19 | py: Implement proper separation between io.FileIO and io.TextIOWrapper. | Paul Sokolovsky |
| 2014-05-19 | objtype: Separate __new__ and __init__ methods. | Paul Sokolovsky |
| 2014-05-14 | objstr.c: Partial implementation of .rsplit(). | Paul Sokolovsky |
| 2014-05-11 | py: Add basic implementation of hasattr() function. | Paul Sokolovsky |
| 2014-05-10 | objstr: Implement .lower() and .upper(). | Paul Sokolovsky |
| 2014-05-10 | modsys, unix: Add sys.exit(), should be implemented by a port. | Paul Sokolovsky |
| 2014-05-10 | objset: Give up and implement frozenset. | Paul Sokolovsky |
| 2014-05-10 | py: Rename byte_code to bytecode everywhere. | Damien George |
| 2014-05-08 | Add gc.enable, gc.disable; remove pyb.gc. | Damien George |
| 2014-05-08 | py, compiler: Add basic support for A=const(123). | Damien George |
| 2014-05-06 | py: Add keyword arg support to enumerate constructor. | Damien George |
| 2014-05-06 | modgc: Add new module for GC-related functionality. | Paul Sokolovsky |
| 2014-05-03 | Add license header to (almost) all files. | Damien George |
| 2014-05-03 | py, stream: Implement readlines for a stream. | Damien George |
| 2014-04-28 | py: Remove silly comment about interning keywords. | Damien George |
| 2014-04-27 | py: Add '*' qstr for 'import *'; use blank qstr for comprehension arg. | Damien George |
| 2014-04-26 | py: "read" & "write" are so common that make them core. | Paul Sokolovsky |
| 2014-04-26 | modio: Implement io.StringIO class. | Paul Sokolovsky |
| 2014-04-26 | objstr: Implement .lstrip() & .rstrip(). | Paul Sokolovsky |
| 2014-04-25 | py: Support instance __call__ method. | Paul Sokolovsky |
| 2014-04-21 | py: Add 'align' and 'data' meta-instructions to inline assembler. | Damien George |
| 2014-04-19 | modstruct: Initial implementation of struct.pack(). | Paul Sokolovsky |