| Age | Commit message (Expand) | Author |
| 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 |
| 2014-11-03 | py: Fix builtin callable so it checks user-defined instances correctly. | Damien George |
| 2014-11-02 | py: Fix bug with right-shifting small ints by large amounts. | Paul Sokolovsky |
| 2014-10-31 | py: Add builtin round function. | Damien George |
| 2014-10-31 | objstr: Allow to convert any buffer proto object to str. | Paul Sokolovsky |
| 2014-10-26 | tests: Get builtin_compile to skin properly on pyboard. | Damien George |
| 2014-10-26 | py: Fix memoryview referencing so it retains ptr to original buffer. | Damien George |
| 2014-10-25 | tests: Add test for compile builtin. | Damien George |
| 2014-10-23 | py: Add builtin memoryview object (mostly using array code). | Damien George |
| 2014-10-22 | py: Fix smallint modulo with negative arguments. | Damien George |
| 2014-10-22 | py: Remove unused and unneeded SystemError exception. | Damien George |
| 2014-10-17 | py: Add more compiler optimisations for constant if/while conditions. | Damien George |
| 2014-10-17 | tests: Add test for nested while with exc and break. | Damien George |
| 2014-10-16 | objclosure: Fix printing of generator closures. | Paul Sokolovsky |
| 2014-10-05 | py: Make compiler return a proper exception on SyntaxError. | Damien George |
| 2014-09-30 | py: Remove IOError since it's deprecated; use OSError instead. | Damien George |
| 2014-09-25 | tests: Add test for exception matching of a tuple of exceptions. | Damien George |
| 2014-09-23 | py: Make native emitter handle multi-compare and not/is not/not in ops. | Damien George |
| 2014-09-23 | tests: Fix uctypes tests to run on 64bit arch; enable more native tests. | Damien George |
| 2014-09-06 | py: Make mpz able to use 16 bits per digit; and 32 on 64-bit arch. | Damien George |
| 2014-08-29 | py: Fix 2 bugs in native emitter: jump_or_pop and stack settling. | Damien George |
| 2014-08-26 | Make int(b'123') work properly. | Dave Hylands |
| 2014-08-26 | py: Add dispatch for user defined ==, >, <=, >=. | Damien George |
| 2014-08-24 | py: Consolidate min/max functions into one, and add key= argument. | Damien George |
| 2014-08-13 | py: Fix mult by negative number of tuple, list, str, bytes. | Damien George |
| 2014-08-12 | py: Improve range: add len, subscr, proper print. | Damien George |
| 2014-08-12 | py: Implement builtin reversed() function. | Damien George |
| 2014-08-11 | objstr: Make sure that bytes are indexed as bytes, not as unicode. | Paul Sokolovsky |
| 2014-08-10 | objarray: Implement equality testing between arrays and other buffers. | Paul Sokolovsky |
| 2014-07-05 | tests: Rename test scripts, changing - to _ for consistency. | Damien George |
| 2014-07-05 | py: Automatically ake __new__ a staticmethod. | Damien George |
| 2014-06-25 | modstruct: Fix alignment handling issues. | Paul Sokolovsky |
| 2014-06-14 | objstr: Be 8-bit clean even for repr(). | Paul Sokolovsky |
| 2014-06-11 | tests: Add testcases for "complicated" args to generator functions. | Paul Sokolovsky |
| 2014-06-10 | py: Implement __contains__ special method. | Damien George |
| 2014-06-08 | objtype: Fix passing of class param to inherited classmethods. | Paul Sokolovsky |
| 2014-06-08 | tests: Add more tests for default keyword-only args. | Damien George |
| 2014-06-08 | tests: Fix default arg test. | Damien George |
| 2014-06-08 | py: Make sure getattr() works with non-interned strings (by interning them). | Paul Sokolovsky |
| 2014-06-07 | py: Implement default keyword only args. | Damien George |
| 2014-06-05 | Fix str.modulo when precision is specified. | Dave Hylands |