| Age | Commit message (Expand) | Author |
| 2014-09-06 | py: Adjust regs for x86 so that 1 more local can live in a reg. | Damien George |
| 2014-09-06 | unix: Fix modffi to be able to return double on x86 machines. | 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 | tests: Enable misc tests on pyboard; output 4 sig figs in rge_sm. | 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 | unix: Don't use -Wno-error=cpp or #warning; fix strict alias warning. | Damien George |
| 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 | unix: Auto-detect MICROPY_EMIT_X64 and MICROPY_GCREGS_SETJMP. | Damien George |
| 2014-09-03 | Merge pull request #845 from Vogtinator/master | 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-09-03 | Merge pull request #844 from chrisdearman/do_str | Damien George |
| 2014-09-02 | Merge branch 'stinos-msvc-extmod' | Damien George |
| 2014-09-02 | extmod: Fix type-punned-ptr error. | Damien George |
| 2014-09-02 | Merge branch 'msvc-extmod' of github.com:stinos/micropython into stinos-msvc-... | Damien George |
| 2014-09-02 | msvc: Exclude modtermios, include extmod and fix compilation error | stijn |
| 2014-09-01 | Declare do_str() function before the implementation | Chris Dearman |
| 2014-09-01 | stmhal, modwiznet5k: Add very minimal documentation. | Damien George |
| 2014-09-01 | stmhal: Add wiznet5k module, to control WIZnet ethernet adaptor. | Damien George |
| 2014-09-01 | drivers, wiznet5k: Make DNS service use HAL sys tick. | Damien George |
| 2014-09-01 | drivers, wiznet5k: Add HAL_Delay(1) to "infinite" loops. | Damien George |
| 2014-09-01 | drivers, wiznet5k: Properly fix ARP bug with W5200 chipset. | Damien George |
| 2014-09-01 | drivers, wiznet5k: Add W5200 support. | Damien George |
| 2014-09-01 | drivers, wiznet5k: Change SPI interface to read/write multiple bytes. | Damien George |
| 2014-09-01 | drivers, wiznet5k: Fix IP addr verification. | Damien George |
| 2014-09-01 | drivers: Initial import of WIZnet5x000 driver. | Damien George |
| 2014-09-01 | Added 'drivers' directory, intended to hold code for specific hardware. | Damien George |
| 2014-08-31 | Merge pull request #841 from dhylands/teensy-README | Damien George |
| 2014-08-30 | Update teensy README.md file | Dave Hylands |
| 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 | lib, libm: Add back dummy definition of tanf. | Damien George |
| 2014-08-29 | lib: Add lib and libm, moving current files from stmhal. | 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 |