| Age | Commit message (Expand) | Author |
| 2014-01-03 | Rename default config file to mpconfig.h, and port's to mpconfigport.h. | Paul Sokolovsky |
| 2014-01-03 | Make it possible to turn off collecting memory stats (MICROPY_MEM_STATS). | Paul Sokolovsky |
| 2014-01-03 | Add new alloc metric: peak_bytes_allocated. | Paul Sokolovsky |
| 2014-01-03 | Add new alloc metric: current_bytes_allocated. | Paul Sokolovsky |
| 2014-01-03 | m_realloc: Account only allocation size difference in total_bytes_allocated. | Paul Sokolovsky |
| 2014-01-03 | Merge pull request #43 from chipaca/master | Damien George |
| 2014-01-03 | Change mp_compile so that it returns a function object for the module. | Damien George |
| 2014-01-03 | Add note about implementing inplace operators. | Damien George |
| 2014-01-03 | Basic implementation of import. | Damien George |
| 2014-01-03 | Changed to use memcpy. | John R. Lenton |
| 2014-01-03 | Add a bit of whitespace. | John R. Lenton |
| 2014-01-03 | untabified | John R. Lenton |
| 2014-01-03 | Add list addition (fixes: #39) | John R. Lenton |
| 2014-01-03 | Change old use of module creation to new proper use. | Damien George |
| 2014-01-02 | Add module object, to be used eventually for import. | Damien George |
| 2014-01-02 | py: Fix generator where state array was incorrectly indexed. | Damien George |
| 2014-01-02 | py: __MACH__ also uses MAP_ANON. | Damien George |
| 2014-01-02 | py: change negative array indices with array - 1. | Damien George |
| 2014-01-02 | py: Add more bytecodes to showbc.c. | Damien George |
| 2014-01-02 | Add quick impl for MP_BC_LOAD_CONST_BYTES which just creates qstr so far. | Paul Sokolovsky |
| 2014-01-02 | py: remove depedence on strcat and stpcpy. | Damien George |
| 2014-01-02 | py: Add framework for built-in "type()" function. | Damien George |
| 2014-01-01 | On OpenBSD MAP_ANONYMOUS is called MAP_ANON. | Edd Barrett |
| 2014-01-01 | py: change declaration of mp_map_t in obj.h (for issue #24). | Damien George |
| 2014-01-01 | py: add int() and float() built-ins, partially implemented. | Damien George |
| 2013-12-30 | Merge pull request #12 from pfalcon/minor-fixes | Damien George |
| 2013-12-30 | py: make closures work. | Damien George |
| 2013-12-30 | Typo fix in comment. | Paul Sokolovsky |
| 2013-12-30 | Put unicode functions in unicode.c, and tidy their names. | Damien George |
| 2013-12-30 | Make unix-cpy cross platform; remove dependency of asmx64 on mpconfig. | Damien George |
| 2013-12-30 | Merge branch 'cross-plat' of https://github.com/pfalcon/micropython into pfal... | Damien George |
| 2013-12-30 | Make "unix" target be crossplatform and support x86, x64, ARM hosts. | Paul Sokolovsky |
| 2013-12-29 | py: add dict length function, and fix rt_store_set. | Damien |
| 2013-12-29 | Change memory allocation API to require size for free and realloc. | Damien |
| 2013-12-29 | py: implement POP_BLOCK in VM. | Damien |
| 2013-12-29 | Handle return value of read() call. | Paul Sokolovsky |
| 2013-12-29 | Add unix-cpy, used to test Micro Python byte code against CPython. | Damien |
| 2013-12-29 | py: implement some basic exception matching. | Damien |
| 2013-12-29 | Add code in VM to handle nested exceptions correctly. | Damien |
| 2013-12-29 | Parse upper-case hex numbers correctly. | 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-20 | Fix a few compiler warnings. | 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-12 | py: remove further unnecessary emit_verbatim code. | Damien |
| 2013-12-12 | py: fix bug with doc string not recognised after first newline of file. | Damien |
| 2013-12-12 | py: reduce use of emit_verbatim calls to minimum. | Damien |
| 2013-12-11 | py: work towards working closures. | Damien |
| 2013-12-10 | py: emit correct id for closed over variables. | Damien |