| Age | Commit message (Expand) | Author |
| 2015-04-04 | tests: Add test for str.splitlines(). | Paul Sokolovsky |
| 2015-03-28 | tests/class_descriptor.py: Fix line-endings (were CRLF). | Paul Sokolovsky |
| 2015-03-26 | py: Add optional support for descriptors' __get__ and __set__ methods. | stijn |
| 2015-03-25 | tests: Skip some new tests when testing native emitter. | Damien George |
| 2015-03-25 | tests: Add tests for SyntaxError, TypeError, and other missing things. | Damien George |
| 2015-03-20 | py: Allow retrieving a function's __name__. | stijn |
| 2015-03-20 | tests: Add basic test for OrderedDict. | Paul Sokolovsky |
| 2015-03-14 | py: Fix builtin abs so it works for bools and bignum. | Damien George |
| 2015-03-14 | tests: Add some more tests for bytes, bignum, string and ujson. | Damien George |
| 2015-03-12 | tests: Add tests for things that are not already tested. | Damien George |
| 2015-03-11 | py: Add support for start/stop/step attributes of builtin range object. | Peter D. Gray |
| 2015-03-03 | tests: Add tests for boundmeth; and bignum cmp, unary, float, error. | Damien George |
| 2015-03-02 | tests: Add basics test for gc module. | Damien George |
| 2015-03-02 | tests: Use range as iterable instead of list comprehension. | Damien George |
| 2015-03-02 | tests: Add tests for builtins: all, any, sum, abs. | Damien George |
| 2015-03-02 | tests: Add tests for op special meths, ubinascii, complex. | Damien George |
| 2015-02-27 | tests: Add test for array slice assignment. | Paul Sokolovsky |
| 2015-02-15 | tests: Remove obsolete test; don't use fp in micropython/ tests. | Damien George |
| 2015-02-15 | py: Simplify and remove redundant code for __iter__ method lookup. | Damien George |
| 2015-02-14 | py: Add setattr builtin. | stijn |
| 2015-02-09 | py: Allow subclass of native object to delegate to the native buffer_p. | Damien George |
| 2015-02-09 | objstr: Fix bytes creation from array of long ints. | Paul Sokolovsky |
| 2015-02-08 | py: Parse big-int/float/imag constants directly in parser. | Damien George |
| 2015-02-02 | py: Make list.sort keep stack usage within O(log(N)) bound. | Damien George |
| 2015-01-30 | py: Convert CR to LF and CR LF to LF in lexer. | Damien George |
| 2015-01-29 | tests: Add some tests to improve coverage. | Damien George |
| 2015-01-29 | tests: Add some tests to improve coverage. | Damien George |
| 2015-01-28 | tests: Add testcase for bytes() on values in range 128-255. | Paul Sokolovsky |
| 2015-01-27 | py: Fix comparison of minus-zero long int. | Damien George |
| 2015-01-21 | py: Implement __reversed__ slot. | Damien George |
| 2015-01-14 | py: Reluctantly add an extra pass to bytecode compiler. | Damien George |
| 2015-01-13 | py: Never intern data of large string/bytes object; add relevant tests. | Damien George |
| 2015-01-11 | py: Implement fallback for equality check for all types. | Damien George |
| 2015-01-08 | tests: Add test for when instance member overrides class member. | Damien George |
| 2015-01-08 | tests: Separate out test cases that rely on float support to float/ dir. | Damien George |
| 2015-01-04 | objarray: Make sure that longint works as bytearray size. | Paul Sokolovsky |
| 2015-01-04 | objstr: Implement kwargs support for str.format(). | Paul Sokolovsky |
| 2015-01-01 | py: Allow keyword arguments for namedtuple | stijn |
| 2015-01-01 | py: Use sequence of strings for named tuple initialization | stijn |
| 2014-12-31 | py: Fix rshift and not of zero/one edge cases in mpz. | Damien George |
| 2014-12-24 | py: Make bytes objs work with more str methods; add tests. | Damien George |
| 2014-12-12 | py: Fix optimised for-loop compiler so it follows proper semantics. | Damien George |
| 2014-12-11 | tests: Add test for semantics of for-loop that optimisation can break. | Damien George |
| 2014-12-09 | py: Allow builtins to be overridden. | Damien George |
| 2014-12-05 | py: Rename mp_obj_int_get to mp_obj_int_get_truncated; fix struct.pack. | Damien George |
| 2014-12-04 | py: Allow bytes/bytearray/array to be init'd by buffer protocol objects. | Damien George |
| 2014-11-30 | py: Implement +, += and .extend for bytearray and array objs. | Damien George |
| 2014-11-29 | tests: Split out float test from builtin_round.py. | Damien George |
| 2014-11-15 | tests: Add test for hash of user defined class. | Damien George |
| 2014-11-05 | py: Allow +, in, and compare ops between bytes and bytearray/array. | Damien George |