| Age | Commit message (Expand) | Author |
| 2014-04-05 | Allow floating point arguments with %d,i,u,o,x,X formats | Dave Hylands |
| 2014-04-04 | Merge pull request #422 from dhylands/str-modulo | Damien George |
| 2014-04-04 | py: Add m_malloc_fail function to handle memory allocation error. | Damien George |
| 2014-04-03 | Implements most of str.modulo | Dave Hylands |
| 2014-04-02 | py: Fix regress for printing of floats and #if. | Damien George |
| 2014-04-02 | tests/string-format: Add test for formatting ints with float format. | Paul Sokolovsky |
| 2014-04-02 | Add more tests. | Damien George |
| 2014-04-02 | py: Factor out static/class method unwrapping code; add tests. | Damien George |
| 2014-04-02 | py: Add support for sep and end keywords in print. | Damien George |
| 2014-04-01 | py: Fix math.{ceil,floor,trunc} to return int. | Damien George |
| 2014-04-01 | Turn off full tests in string-format.py | Dave Hylands |
| 2014-04-01 | tests: Add test for implicit float to int conversion (not allowed!) | Paul Sokolovsky |
| 2014-04-01 | Enhance str.format support | Dave Hylands |
| 2014-03-31 | py: Implement __getattr__. | Damien George |
| 2014-03-31 | objstr: Very basic implementation of % string formatting operator. | Paul Sokolovsky |
| 2014-03-31 | Merge branch 'master' of github.com:micropython/micropython | Damien George |
| 2014-03-31 | py: Fix bug in optimised for .. range. | Damien George |
| 2014-03-31 | tests: Add testcase for multiple inheritance. | Paul Sokolovsky |
| 2014-03-31 | py: Properly implement divide-by-zero handling. | Paul Sokolovsky |
| 2014-03-30 | Merge pull request #399 from pfalcon/gen-defargs | Damien George |
| 2014-03-30 | py: Fix "TypeError: 'iterator' object is not iterable", doh. | Paul Sokolovsky |
| 2014-03-30 | py: Implement support for generalized generator protocol. | Paul Sokolovsky |
| 2014-03-30 | py: Implement positional and keyword args via * and **. | Damien George |
| 2014-03-30 | objgenerator: Handle default args to generator functions. | Paul Sokolovsky |
| 2014-03-30 | vm: Implement CALL_FUNCTION_VAR opcode (foo(*(1, 2, 3))). | Paul Sokolovsky |
| 2014-03-30 | Add "tracing" to try-reraise2.py test. It now fails. | Damien George |
| 2014-03-30 | vm: Save current active exception on opening new try block. | Paul Sokolovsky |
| 2014-03-29 | py: Reraising exception possible only in except block. | Paul Sokolovsky |
| 2014-03-29 | Merge pull request #389 from pfalcon/with-statement | Damien George |
| 2014-03-29 | Merge pull request #383 from pfalcon/yield-from | Damien George |
| 2014-03-29 | tests: Remove unimplemented exceptions from testing. | Damien George |
| 2014-03-29 | tests: Add "with" statement testcases. | Paul Sokolovsky |
| 2014-03-28 | tests: Add testcases for yield from. | Paul Sokolovsky |
| 2014-03-26 | Merge pull request #381 from pfalcon/closure-defargs | Damien George |
| 2014-03-27 | py: Implement getattr() builtin. | Paul Sokolovsky |
| 2014-03-26 | py: Support closures with default args. | Paul Sokolovsky |
| 2014-03-26 | py: Replace mp_const_stop_iteration object with MP_OBJ_NULL. | Damien George |
| 2014-03-26 | Merge pull request #379 from pfalcon/reraise | Damien George |
| 2014-03-26 | Merge branch 'gen-close-ret-val' of github.com:pfalcon/micropython into pfalc... | Damien George |
| 2014-03-26 | vm: Implement raise statement w/o args (reraising last exception). | Paul Sokolovsky |
| 2014-03-26 | objgenerator: Implement return with value and .close() method. | Paul Sokolovsky |
| 2014-03-25 | Merge pull request #370 from xbe/str-rfind | Damien George |
| 2014-03-25 | py: Removed some unnecessary exception objects. | Damien George |
| 2014-03-25 | objexcept: Add "args" exception attribute, as well as StopIteration.value. | Paul Sokolovsky |
| 2014-03-25 | rt_load_method(): Add missing qstr_str() when getting type name. | Paul Sokolovsky |
| 2014-03-24 | Implement str.rfind() and add tests for it. | xbe |
| 2014-03-23 | py: Implement support for "except Exception as var" clause. | Paul Sokolovsky |
| 2014-03-22 | Merge pull request #359 from rjdowdall/master | Damien George |
| 2014-03-22 | Fixed floor division on mp ints and small ints. Added a floordivide test case. | Rachel Dowdall |
| 2014-03-22 | Fixed modulo operator on ints and mp ints to agree with python. Added intdivm... | Rachel Dowdall |