| Age | Commit message (Expand) | Author |
| 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 |
| 2014-05-25 | py: Refactor slice helpers, preparing to support arbitrary slicing. | Paul Sokolovsky |
| 2014-05-25 | Merge branch 'keep-strings-uninterned' of github.com:pfalcon/micropython into... | Damien George |
| 2014-05-25 | sequence: Throw exception for not implemented slice steps. | Paul Sokolovsky |
| 2014-05-25 | objlist: Implement growing slice assignment. | Paul Sokolovsky |
| 2014-05-25 | py: Handle case of slice start > stop in common sequence function. | Paul Sokolovsky |
| 2014-05-25 | objslice: Support arbitrary objects start, stop, and step. | Paul Sokolovsky |
| 2014-05-24 | Add SystemExit exception and use it in unix/ and stmhal/ ports. | Damien George |
| 2014-05-24 | Rename configuration variables controling Python features. | Damien George |
| 2014-05-24 | objstr: Implement .endswith(). | Paul Sokolovsky |
| 2014-05-24 | unix modsocket: Make .makefile() method more compliant. | Paul Sokolovsky |
| 2014-05-22 | py: Initial attempts to actually allow implementing __new__ in Python. | Paul Sokolovsky |
| 2014-05-21 | objobject: Fix arguments to __init__(). | Paul Sokolovsky |
| 2014-05-21 | Merge branch 'master' of github.com:micropython/micropython | Damien George |
| 2014-05-21 | Tidy up some configuration options. | Damien George |
| 2014-05-21 | objtype: super: Fall back to "object" lookup as last resort. | Paul Sokolovsky |
| 2014-05-21 | objtype: super: Add stop condition for looking up in base types. | Paul Sokolovsky |
| 2014-05-21 | Merge pull request #607 from Anton-2/osx-clang | Damien George |