| Age | Commit message (Expand) | Author |
| 2015-05-12 | py: Add mp_obj_get_int_truncated and use it where appropriate. | Damien George |
| 2015-05-12 | py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function. | Damien George |
| 2015-05-11 | vm: Properly handle StopIteration raised in user instance iterator. | Paul Sokolovsky |
| 2015-05-11 | objgenerator: Can optimize StopIteration to STOP_ITERATION only if arg is None. | Paul Sokolovsky |
| 2015-05-11 | objgenerator: If generator yielded STOP_ITERATION value, it's stopped. | Paul Sokolovsky |
| 2015-05-10 | vm: Null pointer test when checking for StopIteration optimizations. | Paul Sokolovsky |
| 2015-05-10 | runtime: Add TODO for mp_resume() on handling .close(). | Paul Sokolovsky |
| 2015-05-10 | py: iternext() may not return MP_OBJ_NULL, only MP_OBJ_STOP_ITERATION. | Paul Sokolovsky |
| 2015-05-08 | emitnative: Revamp ARM codegen compile after full-arg support refactors. | Paul Sokolovsky |
| 2015-05-06 | unix-cpy: Fix adjustment of stack size when leaving exception handler. | Damien George |
| 2015-05-06 | py: Fix naming of function arguments when function is a closure. | Damien George |
| 2015-05-06 | mkrules.mk: Add comment why dependency parsing regex was tweaked. | Paul Sokolovsky |
| 2015-05-06 | Adjust sed regex that processes dependency file from compiler | Ari Suutari |
| 2015-05-05 | py: Remove LOAD_CONST_ELLIPSIS bytecode, use LOAD_CONST_OBJ instead. | Damien George |
| 2015-05-05 | obj: Handle user instance hash based on Python adhoc rules. | Paul Sokolovsky |
| 2015-05-05 | objsingleton: New home for Ellipsis and NotImplemented. | Paul Sokolovsky |
| 2015-05-04 | modbuiltins: Add NotImplemented builtin constant. | Paul Sokolovsky |
| 2015-05-04 | modstruct: Rename module to "ustruct", to allow full Python-level impl. | Paul Sokolovsky |
| 2015-05-04 | modstruct: Group module qstr's together. | Paul Sokolovsky |
| 2015-05-04 | py: Check that arg to object.__new__ is a user-defined type. | Damien George |
| 2015-05-04 | modmachine: Add new module to access hardware, starting with physical memory. | Paul Sokolovsky |
| 2015-04-29 | py/repl.c: Fix shadowing of local variable "i". | Damien George |
| 2015-04-29 | py, readline: Add tab autocompletion for REPL. | Damien George |
| 2015-04-29 | py: Fix attrtuple array length in print and creation. | Damien George |
| 2015-04-28 | py: Replace py-version.sh with makeversionhdr.py, written in Python. | Damien George |
| 2015-04-29 | py: In attrtuple use the correct length value and index for 'fields'. | Daniel Campora |
| 2015-04-25 | py: Fix handling of negative numbers in struct.pack of q/Q. | Damien George |
| 2015-04-26 | vm: On exiting except block, clear sys.exc_info() value. | Paul Sokolovsky |
| 2015-04-25 | py: Implement power op for long-long implementation of bignum. | Damien George |
| 2015-04-25 | py: Support conversion of bignum to bytes. | Damien George |
| 2015-04-25 | modsys: Add basic sys.exc_info() implementation. | Paul Sokolovsky |
| 2015-04-25 | objfun: Fix to stackless mode after recent refactor. | Paul Sokolovsky |
| 2015-04-24 | py: Modify bytecode "with" behaviour so it doesn't use any heap. | Damien George |
| 2015-04-23 | py: Add optional code to check bytes constructor values are in range. | Damien George |
| 2015-04-22 | py/objint_mpz.c: Make int_from_uint actually return uint. | Damien George |
| 2015-04-22 | py/mpz.c: Fix bug with shl not truncating zero digits correctly. | Damien George |
| 2015-04-22 | py/emitnative.c: Fix stack adjustment when erroring on binary op. | Damien George |
| 2015-04-22 | py: Fix printing of "inf" and "nan" floating point values. | Damien George |
| 2015-04-21 | py: Clean up some bits and pieces in parser, grammar. | Damien George |
| 2015-04-21 | py: Simplify grammar for stmt rule (this is also how CPython has it). | Damien George |
| 2015-04-21 | stmhal: Implement os.uname() to get details of OS and hardware. | Damien George |
| 2015-04-21 | py: Add sys.implementation, containing uPy name and version number. | Damien George |
| 2015-04-21 | py: Add attrtuple object, for space-efficient tuples with attr access. | Damien George |
| 2015-04-20 | py: Make viper codegen raise proper exception (ViperTypeError) on error. | Damien George |
| 2015-04-19 | py/inlinethumb: Support for core floating point instructions. | = |
| 2015-04-19 | py: Fix builtin ord so that it can handle bytes values >= 0x80. | Damien George |
| 2015-04-18 | py/vstr.c: Allow vstr_printf to print correctly to a fixed buffer. | Damien George |
| 2015-04-16 | py: Add %q format support to mp_[v]printf, and use it. | Damien George |
| 2015-04-16 | py: Convert occurrences of non-debug printf to mp_printf. | Damien George |
| 2015-04-16 | py: Make mp_sys_stdout_print object, wrapping sys.stdout for mp_print*. | Damien George |