| Age | Commit message (Expand) | Author |
| 2014-04-17 | tests: Remove print('flush') from 2 tests, since stmhal now works. | Damien George |
| 2014-04-16 | fix README to match contents of run-tests | Andrew Scheller |
| 2014-04-16 | run-tests can now skip certain tests when run under Travis CI | Andrew Scheller |
| 2014-04-15 | py: Add builtin functions bin and oct, and some tests for them. | Damien George |
| 2014-04-15 | tests: Disable memoryerror.py test, since it fails on travis. | Damien George |
| 2014-04-15 | travis: Diff output, hopefully this works. | Damien George |
| 2014-04-15 | travis: More tests output debugging. | Damien George |
| 2014-04-15 | travis: More tests debugging. | Damien George |
| 2014-04-15 | travis: Debugging failing tests. | Damien George |
| 2014-04-15 | py: Implement __delitem__ method for classes. | Paul Sokolovsky |
| 2014-04-13 | tests: Add property test. | Damien George |
| 2014-04-13 | tests: Make tests pass on pyboard. | Damien George |
| 2014-04-13 | Make pyboard.py have its own exception; update run-tests for pyboard. | Damien George |
| 2014-04-13 | Merge pull request #473 from pfalcon/list-extend-iter | Damien George |
| 2014-04-13 | py: Rename collections module to _collections. | Paul Sokolovsky |
| 2014-04-13 | objlist: Make .extend accept arbitrary iterable. | Paul Sokolovsky |
| 2014-04-12 | py: Make all LOAD_FAST ops check for unbound local. | Damien George |
| 2014-04-12 | tests: Add some bytecode tests. | Damien George |
| 2014-04-12 | builtinimport: Implement relative imports. | Paul Sokolovsky |
| 2014-04-12 | builtinimport: Set __path__ attribute ASAP as it's clear we have a package. | Paul Sokolovsky |
| 2014-04-12 | py: Remove useless implementations of NOT_EQUAL in binary_op's. | Damien George |
| 2014-04-12 | py: Implement "from pkg import mod" variant of import. | Paul Sokolovsky |
| 2014-04-11 | py, compiler: Allow lambda's to yield. | Damien George |
| 2014-04-11 | py: Implement compiling of *-expr within parenthesis. | Damien George |
| 2014-04-11 | py: Check that sequence has 2 elements for dict iterable constructor. | Damien George |
| 2014-04-11 | objdict: Implement construction from iterable of pairs. | Paul Sokolovsky |
| 2014-04-11 | objdict: Implement __getitem__ method. | Paul Sokolovsky |
| 2014-04-11 | modstruct: Basic implementation of native struct alignment and types. | Paul Sokolovsky |
| 2014-04-11 | modstruct: Refactor to support both LE and BE packed structs. | Paul Sokolovsky |
| 2014-04-10 | tests: Add test for multi-comparison. | Damien George |
| 2014-04-10 | objfun: Fix default arguments filling loop, was broken in presense of kwargs. | Paul Sokolovsky |
| 2014-04-10 | py: Start implementing "struct" module. | Paul Sokolovsky |
| 2014-04-09 | Merge branch 'str-index' of github.com:xbe/micropython into xbe-str-index | Damien George |
| 2014-04-09 | py: str.join can now take arbitrary iterable as argument. | Damien George |
| 2014-04-09 | py: Generators can have their locals closed over. | Damien George |
| 2014-04-09 | py: Properly implement deletion of locals and derefs, and detect errors. | Damien George |
| 2014-04-09 | objint: Implement int.from_bytes() class method and .to_bytes() method. | Paul Sokolovsky |
| 2014-04-08 | tests: Oops: fix del-attr. | Damien George |
| 2014-04-08 | py: Remove DELETE_SUBSCR opcode, combine with STORE_SUBSCR. | Damien George |
| 2014-04-08 | py: Make bytearray a proper type. | Paul Sokolovsky |
| 2014-04-08 | py: Implement str.[r]index() and add tests for them. | xbe |
| 2014-04-08 | Merge branch 'master' of github.com:micropython/micropython | Damien George |
| 2014-04-08 | py: implement UNPACK_EX byte code (for: a, *b, c = d) | Damien George |
| 2014-04-08 | bytearray: Support bytearray(int) constructor. | Paul Sokolovsky |
| 2014-04-08 | Display \r and \t escape codes in string repr | Andrew Scheller |
| 2014-04-07 | Add string formatting support for longlong and mpz. | Dave Hylands |
| 2014-04-07 | Merge pull request #445 from lurch/test-sorted-sets | Damien George |
| 2014-04-07 | Modify set tests to print sorted sets directly | Andrew Scheller |
| 2014-04-07 | Add tests for sorted() function | Andrew Scheller |
| 2014-04-07 | tests: Fix more tests which depend on order of elements in set. | Paul Sokolovsky |