| Age | Commit message (Expand) | Author |
| 2014-01-31 | Typo fixes in comments. | Paul Sokolovsky |
| 2014-01-31 | Add testcase with exception handler spread across functions. | Paul Sokolovsky |
| 2014-01-30 | vm: Add basic implementation of END_FINALLY opcode. | Paul Sokolovsky |
| 2014-01-30 | py: Improve __bool__ and __len__ dispatch; add slots for them. | Damien George |
| 2014-01-30 | Implement __bool__ and __len__ via unary_op virtual method for all types. | Paul Sokolovsky |
| 2014-01-28 | Rename array test to array1 so it doesn't clash with array module. | Damien George |
| 2014-01-28 | bytearray: Print objects properly. | Paul Sokolovsky |
| 2014-01-28 | Add basic array.array test. | Paul Sokolovsky |
| 2014-01-27 | Merge branch 'master' of github.com:micropython/micropython | Damien George |
| 2014-01-27 | py: Add unary op not for NoneType, bool, tuple, list, dict; fix for int. | Damien George |
| 2014-01-27 | long int: Implement more operations. | Paul Sokolovsky |
| 2014-01-27 | gen.send(): Throw StopIteration. Also, explicitly shutdown finished gen. | Paul Sokolovsky |
| 2014-01-26 | Implement send() method for generators. | Paul Sokolovsky |
| 2014-01-25 | py: Implement iterator support for object that has __getitem__. | Damien George |
| 2014-01-24 | Add basic implementation of bytes type, piggybacking on str. | Paul Sokolovsky |
| 2014-01-23 | mp_obj_is_callable(): Only object types can be callable. | Paul Sokolovsky |
| 2014-01-23 | Implement simplest case of str.startswith(). | Paul Sokolovsky |
| 2014-01-22 | Implement octal and hex escapes in strings. | Paul Sokolovsky |
| 2014-01-21 | py: Implement break and continue byte codes, and add tests. | Damien George |
| 2014-01-21 | Add bytearray basic tests. | Paul Sokolovsky |
| 2014-01-21 | Implement str.split(None). | Paul Sokolovsky |
| 2014-01-21 | str: Implement proper string (instead of byte string) indexing. | Paul Sokolovsky |
| 2014-01-21 | Implement string multiplication. | Paul Sokolovsky |
| 2014-01-19 | Move tests in basic/tests/ up one level preparating to multiple test dirs. | Paul Sokolovsky |
| 2014-01-19 | Tiny optimisation in objlist.c; a new test for inheritance. | Damien George |
| 2014-01-18 | Merge branch 'master' of github.com:micropython/micropython | Damien George |
| 2014-01-18 | Improve method lookup in mp_obj_class_lookup. | Damien George |
| 2014-01-18 | Add testcase for subclassing builtin type and calling native method (broken). | Paul Sokolovsky |
| 2014-01-18 | Implement framework for class-defined built-in operators. | Damien George |
| 2014-01-16 | Add empty (false) value testing for strings, tuples, lists, dicts. | Paul Sokolovsky |
| 2014-01-16 | str.format: Don't assume that '}' immediately follows '{', skip insides. | Paul Sokolovsky |
| 2014-01-15 | Merge branch 'str2int' of github.com:xyb/micropython into xyb-str2int | Damien George |
| 2014-01-15 | Merge branch 'str-repr' of github.com:pfalcon/micropython into pfalcon-str-repr | Damien George |
| 2014-01-15 | Merge branch 'builtins' of github.com:chipaca/micropython into chipaca-builtins | Damien George |
| 2014-01-15 | Implement eval. | Damien George |
| 2014-01-15 | Implement repr. | Damien George |
| 2014-01-15 | add more tests and remove debug code | xyb |
| 2014-01-15 | int() test passed | xyb |
| 2014-01-15 | added filter() | John R. Lenton |
| 2014-01-15 | Added map | John R. Lenton |
| 2014-01-15 | type->print(): Distinguish str() and repr() variety by passing extra param. | Paul Sokolovsky |
| 2014-01-14 | Merge remote-tracking branch 'upstream/master' into builtins | John R. Lenton |
| 2014-01-14 | added enumerate() | John R. Lenton |
| 2014-01-14 | Merge pull request #161 from pfalcon/exc-more-pythonic | Damien George |
| 2014-01-14 | Merge pull request #142 from chipaca/containment | Damien George |
| 2014-01-14 | Merge pull request #165 from chipaca/builtins | Damien George |
| 2014-01-15 | Implement "is" and "is not" operators. | Paul Sokolovsky |
| 2014-01-15 | Refactor exception objects to have better impl of Python-side interface. | Paul Sokolovsky |
| 2014-01-14 | Implemented int(str) in UNIX | xyb |
| 2014-01-13 | sorted | John R. Lenton |