| Age | Commit message (Expand) | Author |
| 2014-02-15 | Implement proper exception type hierarchy. | Damien George |
| 2014-02-15 | Change mp_obj_type_t.name from const char * to qstr. | Damien George |
| 2014-02-12 | Replace global "static" -> "STATIC", to allow "analysis builds". Part 1. | Paul Sokolovsky |
| 2014-02-01 | py: Tidy up BINARY_OPs; negation done by special NOT bytecode. | Damien George |
| 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-27 | py: Add unary op not for NoneType, bool, tuple, list, dict; fix for int. | Damien George |
| 2014-01-21 | Revamp qstrs: they now include length and hash. | Damien George |
| 2014-01-19 | Change int to uint for n_args in function with variable arguments. | Damien George |
| 2014-01-18 | Make VM stack grow upwards, and so no reversed args arrays. | Damien George |
| 2014-01-15 | type->print(): Distinguish str() and repr() variety by passing extra param. | Paul Sokolovsky |
| 2014-01-13 | Merge remote-tracking branch 'upstream/master' into containment | John R. Lenton |
| 2014-01-11 | py: Implement staticmethod and classmethod (internally). | Damien George |
| 2014-01-11 | Implemented support for `in` and `not in` operators. | John R. Lenton |
| 2014-01-10 | Added dict.fromkeys. Are we done with dict and #99 yet? I do think we are. | John R. Lenton |
| 2014-01-10 | dict views now, refactoring later. | John R. Lenton |
| 2014-01-09 | Improved type/class/instance code; mp_obj_type_t now has load_attr, store_attr. | Damien George |
| 2014-01-08 | py: Stuff qstr in object pointer; keys for mp_map_t are now always mp_obj_t. | Damien George |
| 2014-01-07 | Moved dict methods out to a mp_method_t. | John R. Lenton |
| 2014-01-07 | added a first pass of dict.update | John R. Lenton |
| 2014-01-07 | Added dict.setdefault | John R. Lenton |
| 2014-01-07 | Added dict.popitem | John R. Lenton |
| 2014-01-07 | implemented dict.pop | John R. Lenton |
| 2014-01-07 | Added dict.get. | John R. Lenton |
| 2014-01-07 | Added dict.copy | John R. Lenton |
| 2014-01-07 | make dict_len use the map's used count | John R. Lenton |
| 2014-01-07 | Added dict.clear. | John R. Lenton |
| 2014-01-07 | Added dict iterator. | John R. Lenton |
| 2014-01-05 | Convert many object types structs to use C99 tagged initializer syntax. | Paul Sokolovsky |
| 2014-01-04 | Convert Python types to proper Python type hierarchy. | Damien George |
| 2014-01-04 | Split qstr into pools, and put initial pool in ROM. | Damien George |
| 2013-12-29 | py: add dict length function, and fix rt_store_set. | Damien |
| 2013-12-21 | Change object representation from 1 big union to individual structs. | Damien |