| Age | Commit message (Expand) | Author |
| 2016-09-22 | all: Remove 'name' member from mp_obj_module_t struct. | Damien George |
| 2016-09-20 | py/builtinimport: Fix nanbox build after change to better handle -m modules. | Paul Sokolovsky |
| 2016-09-20 | builtinimport: add the module specified by -m to sys.modules as '__main__' | Delio Brignoli |
| 2016-09-20 | py/showbc: Make printf's go to the platform print stream. | Damien George |
| 2016-09-19 | py/qstr: Remove a comment. | Damien George |
| 2016-09-19 | py/objnone: Use mp_generic_unary_op instead of custom one. | Damien George |
| 2016-09-19 | py/vstr: Remove vstr.had_error flag and inline basic vstr functions. | Damien George |
| 2016-09-19 | py: Combine 3 comprehension opcodes (list/dict/set) into 1. | Damien George |
| 2016-09-19 | py: Combine 3 comprehension emit functions (list/dict/set) into 1. | Damien George |
| 2016-09-17 | py: Move frozen modules rules from esp8266 port for reuse across ports. | Paul Sokolovsky |
| 2016-09-16 | py/objnone: Remove unnecessary handling of MP_UNARY_OP_BOOL. | Damien George |
| 2016-09-09 | py/makeqstrdefs.py: Use python 2.6 syntax for set creation. | Chris Packham |
| 2016-09-09 | py/asmthumb: Flush D-cache, and invalidate I-cache on STM32F7. | Antonin ENFRUN |
| 2016-09-05 | py: Add MICROPY_USE_INTERNAL_PRINTF option, defaults to enabled. | Delio Brignoli |
| 2016-09-04 | py/emitglue.c: provide mp_raw_code_load_file for any unix architecture | Chris Packham |
| 2016-09-02 | py: If str/bytes hash is 0 then explicitly compute it. | Damien George |
| 2016-09-02 | py/makeqstrdata.py: Compute the qstr hash from bytes, not characters. | Damien George |
| 2016-09-01 | py/mpprint: Fail an assertion with unsupported format specifiers. | Delio Brignoli |
| 2016-09-01 | extmod: Add machine_spi with generic SPI C-protocol and helper methods. | Damien George |
| 2016-08-30 | py/mkrules.mk: Allow to override name of libmicropython.a | Paul Sokolovsky |
| 2016-08-27 | py/bc.h: Rename _mp_code_state to _mp_code_state_t. | Damien George |
| 2016-08-27 | py: Rename struct mp_code_state to mp_code_state_t. | Damien George |
| 2016-08-26 | py/emitglue: Use more compact mp_raise_ValueError function. | Damien George |
| 2016-08-26 | py/modstruct: Use more compact mp_raise_ValueError function. | Damien George |
| 2016-08-26 | py/compile: Don't compile assert statements when optimisations enabled. | Damien George |
| 2016-08-26 | py/gc: Add MICROPY_GC_CONSERVATIVE_CLEAR option to always zero memory. | Damien George |
| 2016-08-24 | extmod/modubinascii: Make crc32() support configurable. | Paul Sokolovsky |
| 2016-08-24 | py/stream.c: use mp_obj_get_type in mp_get_stream_raise | Krzysztof Blazewicz |
| 2016-08-15 | py/sequence: Allow to use bignums as indices in slice objects. | Damien George |
| 2016-08-15 | py/obj.h: For obj reprs A,B,C use void* explicitly for mp_obj_t typedef. | Damien George |
| 2016-08-14 | py/objstr: Use mp_raise_{Type,Value}Error instead of mp_raise_msg. | Damien George |
| 2016-08-14 | py/runtime.h: Move comment about mp_not_implemented to correct place. | Damien George |
| 2016-08-14 | py/objtuple: In tuple_cmp_helper, use mp_check_self instead of raising. | Damien George |
| 2016-08-12 | py: Get rid of assert() in method argument checking functions. | Paul Sokolovsky |
| 2016-08-12 | py/objdict: Get rid of asserts (remove/replace with mp_check_self()). | Paul Sokolovsky |
| 2016-08-12 | py/runtime.h: Define mp_check_self(pred) helper macro. | Paul Sokolovsky |
| 2016-08-12 | py/runtime: Factor out exception raising helpers. | Paul Sokolovsky |
| 2016-08-07 | py/mpconfig.h: Define MP_ALWAYSINLINE for reuse. | Paul Sokolovsky |
| 2016-08-07 | py/objstr,objstrunicode: Fix inconistent #if indentation. | Paul Sokolovsky |
| 2016-08-07 | py/objstr: Make .partition()/.rpartition() methods configurable. | Paul Sokolovsky |
| 2016-08-04 | py/mkrules.mk: Allow to add more items for "clean" target using CLEAN_EXTRA. | Paul Sokolovsky |
| 2016-07-31 | py/py.mk: Extra switches to build "embedded" BerkeleyDB BTree lib. | Paul Sokolovsky |
| 2016-07-30 | py/mpconfig.h: Add MICROPY_STREAMS_POSIX_API setting. | Paul Sokolovsky |
| 2016-07-30 | lib/embed/abort_: Implementation of abort_() function raising uPy exception. | Paul Sokolovsky |
| 2016-07-30 | py/stream: Add adapter methods with POSIX-compatible signatures. | Paul Sokolovsky |
| 2016-07-28 | py/objstringio: Implement MP_STREAM_SEEK ioctl and add seek() method. | Paul Sokolovsky |
| 2016-07-28 | py/objstringio: Add MP_STREAM_FLUSH ioctl and flush() method. | Paul Sokolovsky |
| 2016-07-27 | py/stream: Implement generic flush() method, in terms of C-level ioctl. | Paul Sokolovsky |
| 2016-07-26 | py/stream: Stream module works with errno's, so should include mperrno.h. | Paul Sokolovsky |
| 2016-07-25 | py/objstrunicode: str_index_to_ptr: Implement positive indexing properly. | Paul Sokolovsky |