| Age | Commit message (Expand) | Author |
| 2014-03-19 | py: Fix bug in mpz int, where small int is on lhs, mpz on rhs. | Damien George |
| 2014-03-17 | objstr.c: Replace size_t with machine_uint_t. | xbe |
| 2014-03-17 | py: Clean up includes. | xbe |
| 2014-03-16 | Implement support for __str__ and __repr__ special methods in classes. | Paul Sokolovsky |
| 2014-03-15 | py: Fix bug in vstr_ins_blank_bytes. | Damien George |
| 2014-03-15 | Add vstr_ins and vstr_cut_out; improve stmhal readline. | Damien George |
| 2014-03-14 | stmhal - add pin mapping, gpio, exti, usrsw | Dave Hylands |
| 2014-03-13 | py: In string.count, handle case of zero-length needle. | Damien George |
| 2014-03-13 | Fix issues in str.count implementation. | xbe |
| 2014-03-12 | Implement str.count and add tests for it. | xbe |
| 2014-03-12 | py: Cosmetic changes. | Damien George |
| 2014-03-12 | Merge pull request #340 from iabdalkader/realloc | Damien George |
| 2014-03-12 | py: Add expm1 to math module. | Damien George |
| 2014-03-12 | Fix realloc | mux |
| 2014-03-12 | py: Implement integer overflow checking for * and << ops. | Damien George |
| 2014-03-12 | py: Fix some bugs in mpz; add mpz_from_ll and mpz_set_from_ll. | Damien George |
| 2014-03-10 | Rename formatfloat file; remove MICROPY_ENABLE_FLOAT from mpconfigport.h. | Damien George |
| 2014-03-10 | Add proper floating point printing support. | Dave Hylands |
| 2014-03-10 | Fix makeqstrdata.py to work in Python 2.7 | Dave Hylands |
| 2014-03-09 | py: Make objstr support buffer protocol (read only). | Damien George |
| 2014-03-09 | py: Fix printing of type name. | Damien George |
| 2014-03-08 | Implement ROMable modules. Add math module. | Damien George |
| 2014-03-08 | py: Wrap mpz float functions in MICROPY_ENABLE_FLOAT. | Damien George |
| 2014-03-08 | makeqstrdata: print error to stderr. | Damien George |
| 2014-03-07 | py: Revert to old gc_realloc for now. | Damien George |
| 2014-03-06 | py: Add comments to new gc_realloc, it has some bugs. | Damien George |
| 2014-03-06 | py: Small cosmetic changes to gc_realloc. | Damien George |
| 2014-03-05 | Merge pull request #334 from iabdalkader/realloc | Damien George |
| 2014-03-05 | Fix gc_realloc to expand in place | mux |
| 2014-03-03 | py: Fix overriding of default arguments. | Damien George |
| 2014-03-03 | py: Unify syntax error handling in compiler; check defualt arg syntax. | Damien George |
| 2014-03-03 | py: Factor and improve issubclass. | Damien George |
| 2014-03-03 | namedtuple: Inherit unary/binary ops from tuple base class. | Paul Sokolovsky |
| 2014-03-03 | Add mp_obj_is_subclass_fast() - intended for fast argument checking. | Paul Sokolovsky |
| 2014-03-03 | Add basic collections.namedtuple implementation. | Paul Sokolovsky |
| 2014-03-01 | Merge pull request #330 from pfalcon/cortex-a | Damien George |
| 2014-03-01 | py: Implement bit-shift and not operations for mpz. | Damien George |
| 2014-03-01 | nlrthumb.S: Comment out ".cpu cortex-m4", it causes problems on Cortex-A. | Paul Sokolovsky |
| 2014-03-01 | nlr.h: Do proper arch selection, using the same tests as nlr*.S . | Paul Sokolovsky |
| 2014-02-26 | GC: Fix printf formats for debugging; add gc_dump_alloc_table. | Damien George |
| 2014-02-26 | py: Remove more var arg names fro macros with var args. | Damien George |
| 2014-02-26 | py: Reduce size of mp_obj_fun_native_t struct by packing ints. | Damien George |
| 2014-02-26 | py: Take out bitfield entries from their own structure. | Damien George |
| 2014-02-26 | py: Remove name of var arg from macros with var args. | Damien George |
| 2014-02-26 | py: Start to implement shl/shr for mpz. Fix return void. | Damien George |
| 2014-02-24 | py: Fix mpn_sub, was increasing wrong source pointer. | Damien George |
| 2014-02-22 | Add arbitrary precision integer support. | Damien George |
| 2014-02-22 | py: Put number parsing code together in parsenum.c. | Damien George |
| 2014-02-22 | py: Rename strtonum to mp_strtonum. | Damien George |
| 2014-02-22 | py: Fix casting and printing of small int. | Damien George |