| Age | Commit message (Expand) | Author |
| 2014-10-19 | py: Move pointer to next free block earlier in alloc.reentrant-gc | Damien George |
| 2014-10-16 | py: First steps making GC reentrant. | Damien George |
| 2014-10-16 | py: Take gc_pool_start out of bss section, to reclaim 1st block of heap. | Damien George |
| 2014-10-16 | stream: Handle non-blocking errors in readline() properly. | Paul Sokolovsky |
| 2014-10-16 | stream: Return errno value as first arg of OSError exception. | Paul Sokolovsky |
| 2014-10-16 | objclosure: Fix printing of generator closures. | Paul Sokolovsky |
| 2014-10-15 | py: Fix GC realloc issue, where memory chunks were never shrunk. | Damien George |
| 2014-10-15 | py: Fix dummy definition of BEGIN/END_ATOMIC_SECTION. | Damien George |
| 2014-10-13 | modzlibd: Remove, superceded by moduzlib. | Paul Sokolovsky |
| 2014-10-12 | Merge pull request #904 from pfalcon/moduzlib | Damien George |
| 2014-10-13 | moduzlib: Integrate into the system. | Paul Sokolovsky |
| 2014-10-12 | py: Add module weak link support. | Damien George |
| 2014-10-12 | py: Fix x86 viper code generation, mem8 <-> mem16 for load. | Damien George |
| 2014-10-12 | py: Implement native load for viper. | Damien George |
| 2014-10-12 | py: Implement and,or,xor native ops for viper. | Damien George |
| 2014-10-12 | modure: Make sure that re1.5 compiled in only of modure itself is enabled. | Paul Sokolovsky |
| 2014-10-11 | modure: Initial module, using re1.5 (which is based on re1 codebase). | Paul Sokolovsky |
| 2014-10-09 | py: Add further checks for failed malloc in lexer init functions. | Damien George |
| 2014-10-09 | Merge branch 'lexer-crash' of https://github.com/dhylands/micropython into dh... | Damien George |
| 2014-10-09 | py: Add #if guard around gc-specific code. | Damien George |
| 2014-10-08 | Make lexer fail gracefully when memory can't be allocated. | Dave Hylands |
| 2014-10-07 | Allow real memory errors (from locked gc) to be reported with traceback. | Dave Hylands |
| 2014-10-06 | py: Extra autodetect for little endianness using __LITTLE_ENDIAN__. | Damien George |
| 2014-10-06 | py: Make mp_binary_set_val work on big endian machine. | Damien George |
| 2014-10-06 | py: Make int.to_bytes work on big endian machine. | Damien George |
| 2014-10-06 | py: Try to autodetect machine endianness when not defined by port. | Damien George |
| 2014-10-05 | py: Implement proper context save/restore for eval/exec; factor code. | Damien George |
| 2014-10-05 | py: Make compiler return a proper exception on SyntaxError. | Damien George |
| 2014-10-04 | Implement missing ARM emitter functions for viper | Fabian Vogt |
| 2014-10-03 | py: Fix unix-cpy to compile with uint->mp_uint_t changes. | Damien George |
| 2014-10-03 | py: Change [u]int to mp_[u]int_t in qstr.[ch], and some other places. | Damien George |
| 2014-10-03 | py: Use UINT_FMT instead of %d. | Damien George |
| 2014-10-03 | py: Convert [u]int to mp_[u]int_t where appropriate. | Damien George |
| 2014-09-30 | py: Remove IOError since it's deprecated; use OSError instead. | Damien George |
| 2014-09-29 | py: Allow x86-64 to mov r16 to rm16 with extended src reg. | Damien George |
| 2014-09-29 | py: Fix viper store on x86; add tests for viper ptr16. | Damien George |
| 2014-09-29 | py: Add casting to viper; add native mem stores to viper. | Damien George |
| 2014-09-29 | py: Implement more binary ops for viper emitter. | Damien George |
| 2014-09-29 | py: Allow viper to use ints as direct conditionals in jumps. | Damien George |
| 2014-09-29 | py: Fix types, uint -> mp_uint_t. | Damien George |
| 2014-09-29 | py: Make macro names in assemblers consistent, and tidy up a bit. | Damien George |
| 2014-09-29 | py: Add store r8 and store r16 ops to asm_x86 and asm_x64. | Damien George |
| 2014-09-29 | py: In asmthumb, clean up unit/int types and ite ops. | Damien George |
| 2014-09-28 | Fix error: unknown type name 'size_t' | bvernoux |
| 2014-09-26 | py: Clean up nlr*.S to make it easier to read; fix clang .bss error. | Damien George |
| 2014-09-25 | py: Simplify JSON str printing (while still conforming to JSON spec). | Damien George |
| 2014-09-25 | py: Tidy up exception matching; allow matching of tuple of exceptions. | Damien George |
| 2014-09-25 | py: For malloc and vstr functions, use size_t exclusively for int type. | Damien George |
| 2014-09-23 | py: Free non-interned strings in the parser when not needed. | Damien George |
| 2014-09-23 | py: Make native emitter handle multi-compare and not/is not/not in ops. | Damien George |