| Age | Commit message (Expand) | Author |
| 2014-01-12 | Merge pull request #146 from pfalcon/assert-exc | Damien George |
| 2014-01-12 | rt_binary_op(): Don't fall thru in case small_int op result doesn't fit back. | Paul Sokolovsky |
| 2014-01-12 | Add AssertionError. | Paul Sokolovsky |
| 2014-01-11 | py: Implement staticmethod and classmethod (internally). | Damien George |
| 2014-01-11 | py: Fix bug where == and != not handled for small_ints. | Damien George |
| 2014-01-11 | unified the bops | John R. Lenton |
| 2014-01-11 | Unsupported operand types for binary operator: dump both args' types. | Paul Sokolovsky |
| 2014-01-09 | py: Implement base class lookup, issubclass, isinstance. | Damien George |
| 2014-01-09 | Improved type/class/instance code; mp_obj_type_t now has load_attr, store_attr. | Damien George |
| 2014-01-08 | py: Proper framework for built-in 'type'. | Damien George |
| 2014-01-08 | py: add variable argument exception constructor function. | 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-08 | py: Improve __build_class__. | Damien George |
| 2014-01-07 | Merge remote-tracking branch 'upstream/master' into dict_feats | John R. Lenton |
| 2014-01-07 | added a first pass of dict.update | John R. Lenton |
| 2014-01-07 | py: Fix up number operations and coercion. | Damien George |
| 2014-01-04 | Convert Python types to proper Python type hierarchy. | Damien George |
| 2014-01-04 | Add ellipsis object. | Damien George |
| 2014-01-04 | Split qstr into pools, and put initial pool in ROM. | Damien George |
| 2014-01-03 | Add note about implementing inplace operators. | Damien George |
| 2014-01-03 | Basic implementation of import. | Damien George |
| 2014-01-02 | Add module object, to be used eventually for import. | Damien George |
| 2014-01-02 | py: Add framework for built-in "type()" function. | Damien George |
| 2014-01-01 | py: add int() and float() built-ins, partially implemented. | Damien George |
| 2013-12-30 | py: make closures work. | Damien George |
| 2013-12-30 | Put unicode functions in unicode.c, and tidy their names. | Damien George |
| 2013-12-29 | py: add dict length function, and fix rt_store_set. | Damien |
| 2013-12-29 | py: implement some basic exception matching. | Damien |
| 2013-12-21 | py: simplify __next__ method for generators. | Damien |
| 2013-12-21 | Change object representation from 1 big union to individual structs. | Damien |
| 2013-12-17 | py: add more Python built-in functions. | Damien |
| 2013-12-17 | py: split runtime into map, obj, builtin. | Damien |
| 2013-12-11 | py: work towards working closures. | Damien |
| 2013-12-10 | py: add skeletal import functionality. | Damien |
| 2013-11-28 | py: built-in range now accepts variable number of arguments. | Damien |
| 2013-11-26 | py: add list pop and sort, unpack_sequence, and keywords in method_call. | Damien |
| 2013-11-25 | py: add call to __init__ when instantiating class object. | Damien |
| 2013-11-17 | Add function to decode and show byte code. | Damien |
| 2013-11-17 | Change some debugging/output messages for native code generation. | Damien |
| 2013-11-09 | Add len and subscr (a hack) support for strings. | Damien |
| 2013-11-06 | Built-in print function supports variable number of arguments. | Damien |
| 2013-11-05 | Improve allocation of stack for byte code. | Damien |
| 2013-11-05 | Make byte code jumps relative. | Damien |
| 2013-11-03 | Fixup include of stdarg and va_list definition. | Damien |
| 2013-11-03 | Add simple var-arg functions; add simple string.format. | Damien |
| 2013-11-03 | Change Py API names, py_get_* -> py_obj_get_*. | Damien |
| 2013-11-02 | Add user object to runtime. | Damien |
| 2013-11-02 | Fix bug: emit native didn't clear last_was_return in label_assign. | Damien |
| 2013-11-02 | Add basic complex number support. | Damien |
| 2013-11-02 | Small hack to temporarily fix allocation of unique_code slots. | Damien |