| Age | Commit message (Expand) | Author |
| 2014-09-08 | py: Print imported module's location (__file__) if available. | Damien George |
| 2014-09-07 | Remove skeletal modselect from extmod and just put it in stmhal. | Damien George |
| 2014-09-07 | py: Rename mp_builtin_id to mp_obj_id and make it public. | Damien George |
| 2014-09-07 | stmhal: Implement generic select.select and select.poll. | Damien George |
| 2014-09-07 | py: Add ioctl method to stream protocol; add initial modselect. | Damien George |
| 2014-09-07 | py: Clean up x86-64 native assembler; allow use of extended regs. | Damien George |
| 2014-09-06 | py: Adjust regs for x86 so that 1 more local can live in a reg. | Damien George |
| 2014-09-06 | py: Allow x86 native functions to take arguments. | Damien George |
| 2014-09-06 | py: Add support for emitting native x86 machine code. | Damien George |
| 2014-09-06 | Merge branch 'master' of github.com:micropython/micropython | Damien George |
| 2014-09-06 | py: Native emitter now supports delete name & global, and end finally. | Damien George |
| 2014-09-06 | modstruct: Implement 'O', 'P', 's' types for packed structs. | Paul Sokolovsky |
| 2014-09-06 | py: Correctly set sys.maxsize value for 64-bit. | Paul Sokolovsky |
| 2014-09-06 | py: Fix definition of sys.maxsize with mpz changes. | Damien George |
| 2014-09-06 | py: Make mpz able to use 16 bits per digit; and 32 on 64-bit arch. | Damien George |
| 2014-09-05 | py: Convert (u)int to mp_(u)int_t in mpz, and remove unused function. | Damien George |
| 2014-09-05 | py: Use % str formatting instead of {} in makeqstrdata.py. | Damien George |
| 2014-09-04 | py: Use variable length encoded uints in more places in bytecode. | Damien George |
| 2014-09-03 | Code style/whitespace cleanup; remove obsolete headers. | Damien George |
| 2014-09-03 | Add cache flush in py/asmarm.c and add new MP_PLAT_ALLOC_EXEC and MP_PLAT_FRE... | Fabian Vogt |
| 2014-08-30 | py: Small simplifications in tuple and list accessors. | Damien George |
| 2014-08-30 | py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h. | Damien George |
| 2014-08-30 | py: Remove use of int type in obj.h. | Damien George |
| 2014-08-30 | py: Change all uint to mp_uint_t in obj.h. | Damien George |
| 2014-08-30 | py: Make tuple and list use mp_int_t/mp_uint_t. | Damien George |
| 2014-08-30 | py: Make map, dict, set use mp_int_t/mp_uint_t exclusively. | Damien George |
| 2014-08-30 | py: Save about 200 bytes of ROM by using smaller type for static table. | Damien George |
| 2014-08-30 | Change some parts of the core API to use mp_uint_t instead of uint/int. | Damien George |
| 2014-08-29 | py: Use memmove instead of memcpy when appropriate. | Damien George |
| 2014-08-29 | py: Fix 2 bugs in native emitter: jump_or_pop and stack settling. | Damien George |
| 2014-08-29 | py: Add compiler optimisation for conditions in parenthesis. | Damien George |
| 2014-08-28 | py: Move native glue code from runtime.c to new file nativeglue.c. | Damien George |
| 2014-08-28 | Merge pull request #833 from Vogtinator/arm-native | Damien George |
| 2014-08-28 | py, gc: Further reduce heap fragmentation with new, faster gc alloc. | Damien George |
| 2014-08-28 | py: Reduce fragmentation of GC heap. | Damien George |
| 2014-08-28 | Clarify copyright on asmarm files | Fabian Vogt |
| 2014-08-27 | Basic native ARM emitter | Fabian Vogt |
| 2014-08-27 | py: Improve efficiency of MP_OBJ_IS_STR_OR_BYTES. | Damien George |
| 2014-08-27 | Merge branch 'int-bytes' of https://github.com/dhylands/micropython into dhyl... | Damien George |
| 2014-08-26 | Make int(b'123') work properly. | Dave Hylands |
| 2014-08-26 | py: Fix line number printing for file with 1 line. | Damien George |
| 2014-08-26 | py: Add dispatch for user defined ==, >, <=, >=. | Damien George |
| 2014-08-25 | stmhal: Make enable_irq and disable_irq inline functions. | Damien George |
| 2014-08-25 | Add save/restore_irq | Dave Hylands |
| 2014-08-24 | py: Consolidate min/max functions into one, and add key= argument. | Damien George |
| 2014-08-24 | py: Fix bug where GC collected native/viper/asm function data. | Damien George |
| 2014-08-22 | py: Change hash and len members of str from 16 bit to full word. | Damien George |
| 2014-08-22 | py: Small cleanup in stream.c. | Damien George |
| 2014-08-22 | py: Speed up GC allocation. | Damien George |
| 2014-08-16 | py: Code clean-up in native emitter; improve thumb native calls. | Damien George |