| Age | Commit message (Expand) | Author |
| 2014-06-01 | py, str: Replace enum with actual function pointer. | Damien George |
| 2014-06-01 | Rename bultins config variables to MICROPY_PY_BUILTINS_*. | Damien George |
| 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-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-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 | 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 | 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 | Rename configuration variables controling Python features. | Damien George |
| 2014-05-24 | objstr: Implement .endswith(). | Paul Sokolovsky |
| 2014-05-21 | py: Rename MP_OBJ_NOT_SUPPORTED to MP_OBJ_NULL. | Damien George |
| 2014-05-15 | objstr: startswith(): Accept optional "start" arg. | Paul Sokolovsky |
| 2014-05-15 | py: Implement more complete bytes comparison handling. | Paul Sokolovsky |
| 2014-05-15 | objstringio: Implement io.BytesIO. | Paul Sokolovsky |
| 2014-05-14 | objstr.c: Partial implementation of .rsplit(). | Paul Sokolovsky |
| 2014-05-13 | py, unix: Add copyright for modules I worked closely on. | Paul Sokolovsky |
| 2014-05-11 | objstr: Slice indexing: support bytes properly. | Paul Sokolovsky |
| 2014-05-11 | objstr: Make .split() support bytes. | Paul Sokolovsky |
| 2014-05-11 | objstr: Make .join() support bytes. | Paul Sokolovsky |
| 2014-05-11 | py: Give up and make mp_obj_str_get_data() deal with bytes too. | Paul Sokolovsky |
| 2014-05-11 | objstr: Make *strip() accept bytes. | Paul Sokolovsky |
| 2014-05-11 | objstr: Make .[r]partition() work with bytes. | Paul Sokolovsky |
| 2014-05-10 | py: Fix prefix on few sequence helpers, was incorrectly "mp_". | Paul Sokolovsky |
| 2014-05-10 | objstr: Implement .lower() and .upper(). | Paul Sokolovsky |
| 2014-05-10 | py: Tidy up returning NULL which should be MP_OBJ_NOT_SUPPORTED. | Damien George |
| 2014-05-10 | bytes: Implement comparison and other binary operations. | Paul Sokolovsky |
| 2014-05-06 | py: bytes(), str(): Add NotImplementedError for kwargs. | Paul Sokolovsky |
| 2014-05-03 | Add license header to (almost) all files. | Damien George |
| 2014-05-02 | py, unix: Make "mpconfig.h" be first included, as other headers depend on it. | Paul Sokolovsky |
| 2014-04-30 | py: Abstract no-return attribute for functions a bit. | Paul Sokolovsky |
| 2014-04-26 | objstr: Optimize .rstrip() by scanning string from end. | Paul Sokolovsky |
| 2014-04-26 | objstr: Implement .lstrip() & .rstrip(). | Paul Sokolovsky |
| 2014-04-19 | objstr: Init hash in mp_obj_str_builder_start() to 0. | Paul Sokolovsky |
| 2014-04-18 | py: Add typecode to buffer protocol. | Damien George |
| 2014-04-17 | py: Add MP_OBJ_STOP_ITERATION and make good use of it. | Damien George |
| 2014-04-17 | py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. | Damien George |
| 2014-04-15 | py: Add len(bytes). | Damien George |
| 2014-04-15 | py: Add builtin functions bin and oct, and some tests for them. | Damien George |
| 2014-04-14 | Make USE_COMPUTED_GOTO a config option in mpconfig.h. | Damien George |
| 2014-04-14 | objstr: Allow to define statically allocated str objects. | Paul Sokolovsky |
| 2014-04-14 | qstr, objstr: Make sure that valid hash != 0, treat 0 as "not computed". | Paul Sokolovsky |
| 2014-04-13 | py: Make bytes type hashable. | Paul Sokolovsky |
| 2014-04-13 | objstr: Add str.encode() and bytes.decode() methods. | Paul Sokolovsky |
| 2014-04-11 | py: Simplify and improve mp_get_index. | Damien George |
| 2014-04-10 | objstr: Add TODO-optimize for using .join with arbitrary iterable. | Paul Sokolovsky |