| Age | Commit message (Expand) | Author |
| 2015-03-19 | py: Allow to compile with extra warnings (sign-compare, unused-param). | Damien George |
| 2015-03-17 | objtype: Clarify comment why we call mp_load_method_maybe() for native sub-obj. | Paul Sokolovsky |
| 2015-03-16 | objtype: Refactor dealing with native sub-objects for clarity. | Paul Sokolovsky |
| 2015-03-16 | objtype: mp_obj_class_lookup: Remove implausible condition. | Paul Sokolovsky |
| 2015-03-16 | objtype: Clarify comment for mp_obj_class_lookup(). | Paul Sokolovsky |
| 2015-03-16 | objtype: Clarify code by consistently using common subexpression. | Paul Sokolovsky |
| 2015-03-16 | py: Fix printing of error message when parsing malformed integer. | Damien George |
| 2015-03-14 | py, extmod: Remove include of unnecessary system headers. | Damien George |
| 2015-03-14 | py: In pfenv_vprintf, adjust type from mp_uint_t to unsigned int. | Damien George |
| 2015-03-14 | py: Remove unnecessary and unused sgn argument from pfenv_print_mp_int. | Damien George |
| 2015-03-14 | py: Fix builtin abs so it works for bools and bignum. | Damien George |
| 2015-03-14 | py: Add MICROPY_COMP_{DOUBLE,TRIPLE}_TUPLE_ASSIGN config options. | Damien George |
| 2015-03-14 | py: In compiler, put macro guard around potentially unused asm vars. | Damien George |
| 2015-03-12 | py: Make some mpz functions static and remove unused ones. | Damien George |
| 2015-03-11 | py: Add support for start/stop/step attributes of builtin range object. | Peter D. Gray |
| 2015-03-06 | objmemoryview: Introduce mp_obj_new_memoryview(). | Paul Sokolovsky |
| 2015-03-05 | objarray: Support array('O'), array of objects, as extension to CPython. | Paul Sokolovsky |
| 2015-03-04 | objarray: Fix typo in null TYPECODE_MASK. | Paul Sokolovsky |
| 2015-03-03 | py: Add MICROPY_MALLOC_USES_ALLOCATED_SIZE to allow simpler malloc API. | Damien George |
| 2015-03-03 | runtime: Typo fixes in comments. | Paul Sokolovsky |
| 2015-03-03 | py: In inline assembler, reset labels on code-size pass. | Damien George |
| 2015-03-03 | py: Simplify some inline-assembler error messages, but retain meaning. | Damien George |
| 2015-03-03 | py: Give error for duplicate label in inline assembler. | Damien George |
| 2015-03-03 | py: Guard against redef of nlr_push with DEBUG + MICROPY_NLR_SETJMP. | stijn |
| 2015-03-02 | py: In inline assembler, fix branch out-of-range error reporting. | Damien George |
| 2015-03-02 | py: Use SMALL_INT creation macro in builtin sum. | Damien George |
| 2015-03-02 | py: For inline assembler, add bcc_n and bcc_w ops. | Damien George |
| 2015-03-02 | py: Clean up and comment out unused functions in mpz. | Damien George |
| 2015-03-01 | py: Set compiler scope before folding constants so error messages work. | Damien George |
| 2015-02-28 | py: Combine complie functions for or_test/and_test to reduce code size. | Damien George |
| 2015-02-28 | py: Combine emit functions for jump true/false to reduce code size. | Damien George |
| 2015-02-28 | py: Combine logic for compiling and/or tests, to reduce code size. | Damien George |
| 2015-02-27 | objarray: Implement array slice assignment. | Paul Sokolovsky |
| 2015-02-27 | py: Transform assert logic in compiler to save code space. | Damien George |
| 2015-02-27 | py: Use m_{new,renew,del} consistently. | Damien George |
| 2015-02-27 | py: Fix adding of traceback so that it appends to existing info. | Damien George |
| 2015-02-26 | py: Small optimisation of logic flow in BC_WITH_CLEANUP bytecode. | Damien George |
| 2015-02-25 | py: Make inline assembler raise exception when branch not in range. | Damien George |
| 2015-02-24 | py: In inline assembler, add return statement to fix flow logic. | Damien George |
| 2015-02-24 | py: Factor some code in inline thumb assembler to reduce code size. | Damien George |
| 2015-02-24 | py: Make more asmthumb functions inline to reduce code size. | Damien George |
| 2015-02-24 | py: Reduce code size of inline thumb assembler by using static tables. | Damien George |
| 2015-02-23 | py: Update parse.c&mpconfig.h to reflect rename of mp_lexer_show_token. | nhtshot |
| 2015-02-23 | py: Implement UnicodeError. | Paul Sokolovsky |
| 2015-02-22 | py: Make math special functions configurable and disabled by default. | Damien George |
| 2015-02-22 | py: Add few more special methods. | Paul Sokolovsky |
| 2015-02-21 | py: Expose mp_obj_list_remove as a public function. | Damien George |
| 2015-02-17 | py: Fix mp_obj_print() to work when Python streams are not used. | Paul Sokolovsky |
| 2015-02-17 | py: Revamp mp_obj_print() to use Python streams. | Paul Sokolovsky |
| 2015-02-16 | py: Implement bl/bx instructions for inline Thumb assembler. | Damien George |