| Age | Commit message (Expand) | Author |
| 2014-06-06 | modgc: 64-bit cleanness. | Paul Sokolovsky |
| 2014-06-05 | modgc: Implement return value for gc.collect(), enable on Unix. | Paul Sokolovsky |
| 2014-06-05 | py: Raise TypeError when trying to format non-int with %x,%o,%X. | Damien George |
| 2014-06-05 | Merge pull request #665 from Rosuav/naming3.3 | Paul Sokolovsky |
| 2014-06-05 | py: Small changes to objstr.c, including a bug fix. | Damien George |
| 2014-06-06 | Change comments (mainly URLs) to no longer specifically say Python 3.3 | Chris Angelico |
| 2014-06-05 | objstr: Implement "%(key)s" % {} formatting for strings and dicts. | Paul Sokolovsky |
| 2014-06-05 | Replace assert(0) with a self-documenting TODO string | Chris Angelico |
| 2014-06-04 | Simplify detection of quote characters in mp_str_print_quoted. | Chris Angelico |
| 2014-06-04 | Correct file reference (there's no qstrraw.h) | Chris Angelico |
| 2014-06-03 | py: Properly fix configuration of float and math module. | Damien George |
| 2014-06-03 | py: Allow tail call optimisation in mp_call_function_n_kw. | Damien George |
| 2014-06-03 | py: Fix configuration of math module. | Damien George |
| 2014-06-03 | py: Implement full behaviour of dict.update(), and dict(). | Damien George |
| 2014-06-03 | vm: If there's no lineno info, set lineno in traceback to 0, not 1. | Paul Sokolovsky |
| 2014-06-03 | py: For optimization level -O3 and higher, remove lineno info from bytecode. | Paul Sokolovsky |
| 2014-06-03 | py: Instead of having "debug on" var, have "optimization level" var. | Paul Sokolovsky |
| 2014-06-03 | showbc: Make micropython -v also dump bytecode in hex form. | Paul Sokolovsky |
| 2014-06-03 | showbc: Make sure it's possible to trace MAKE_FUNCTION arg to actual bytecode. | Paul Sokolovsky |
| 2014-06-02 | showbc: Print code block header at the beginning, not in the middle of dump. | Paul Sokolovsky |
| 2014-06-02 | lexer: Add another comment for somewhat obscure way __debug__ is handled. | Paul Sokolovsky |
| 2014-06-02 | modstruct: Add one more extension to typecodes - 'S', a pointer to C string. | Paul Sokolovsky |
| 2014-06-01 | py, str: Replace enum with actual function pointer. | Damien George |
| 2014-06-01 | py: Fix configurability of builtin slice. | Damien George |
| 2014-06-01 | py: Add option to disable set() object (enabled by default). | Damien George |
| 2014-06-01 | Rename bultins config variables to MICROPY_PY_BUILTINS_*. | Damien George |
| 2014-06-01 | py, vm: Replace save_ip, save_sp with code_state->{ip, sp}. | Damien George |
| 2014-06-01 | Merge branch 'vm-alloca' of github.com:pfalcon/micropython into pfalcon-vm-al... | Damien George |
| 2014-05-31 | py: Fix stack underflow with optimised for loop. | Damien George |
| 2014-05-31 | vm: Factor out structure with code execution state and pass it around. | Paul Sokolovsky |
| 2014-05-31 | vm: Don't unconditionally allocate state on stack, do that only if needed. | Paul Sokolovsky |
| 2014-05-31 | vm: Detect stack underflow in addition to overflow. | Paul Sokolovsky |
| 2014-05-31 | objstr: str_uni_istype(): Spurious whitespace on empty lines. | Paul Sokolovsky |
| 2014-05-31 | objstr: str_uni_istype(): Codestyle. | Paul Sokolovsky |
| 2014-05-31 | add methods isspace(), isalpha(), isdigit(), isupper() and islower() to str | Kim Bauters |
| 2014-05-31 | py: Reformat few long functions argument lists for clarity. | Paul Sokolovsky |
| 2014-05-31 | objfun: Typo fixes in comments. | Paul Sokolovsky |
| 2014-05-30 | py: Fix break from within a for loop. | Damien George |
| 2014-05-30 | objstr: *strip(): If nothing is stripped, don't create dup string. | Paul Sokolovsky |
| 2014-05-30 | objstr: *strip(): Fix handling of one-char subject strings. | Paul Sokolovsky |
| 2014-05-29 | py: Implement bignum '&' with negatives on lhs and rhs. | Damien George |
| 2014-05-28 | py: Fix check of small-int overflow when parsing ints. | Damien George |
| 2014-05-28 | py: Make int(<longint>) work by just returning the longint. | Damien George |
| 2014-05-28 | py: Implement long int parsing in int(...). | Damien George |
| 2014-05-25 | py, vm: Where possible, make variables local to each opcode. | Damien George |
| 2014-05-25 | py: Slightly improve efficiency of mp_obj_new_str; rename str_new. | Damien George |
| 2014-05-25 | Change const byte* to const char* where sensible. | Damien George |
| 2014-05-25 | Merge branch 'pfalcon-keep-strings-uninterned' | Damien George |
| 2014-05-25 | py: Don't automatically intern strings in parser. | Damien George |
| 2014-05-25 | objlist: Implement support for arbitrary (3-arg) slices. | Paul Sokolovsky |