Age | Commit message (Expand) | Author |
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 |
2014-04-09 | Merge branch 'str-index' of github.com:xbe/micropython into xbe-str-index | Damien George |
2014-04-09 | py: Add mp_obj_is_integer; make mp_get_index check for long int. | Damien George |
2014-04-09 | py: str.join can now take arbitrary iterable as argument. | Damien George |
2014-04-08 | py: Implement str.[r]index() and add tests for them. | xbe |
2014-04-08 | py: Update comment in str.replace(). | xbe |
2014-04-08 | bytes: Support buffer protocol. | Paul Sokolovsky |
2014-04-08 | Display \r and \t escape codes in string repr | Andrew Scheller |
2014-04-08 | py: Rename pfenv_print_int to pfenv_print_mp_int, and add back former. | Damien George |
2014-04-07 | Add string formatting support for longlong and mpz. | Dave Hylands |
2014-04-07 | py: Fix str.replace for case when arg 0 or 1 is empty string. | Damien George |
2014-04-06 | py: str.split: handle non-default separator. | Damien George |
2014-04-05 | py: Change nlr_jump to nlr_raise, to aid in debugging. | Damien George |
2014-04-05 | Allow floating point arguments with %d,i,u,o,x,X formats | Dave Hylands |
2014-04-03 | Implements most of str.modulo | Dave Hylands |
2014-04-02 | Merge branch 'fix-format-int' of github.com:dhylands/micropython into dhyland... | Damien George |
2014-04-02 | Fix str.format to work with {:f/g/e} and ints | Dave Hylands |
2014-04-02 | py: Fix regress for printing of floats and #if. | Damien George |
2014-04-02 | py: Fix up so that it can compile without float. | Damien George |
2014-04-01 | Enhance str.format support | Dave Hylands |
2014-03-31 | objstr: Very basic implementation of % string formatting operator. | Paul Sokolovsky |
2014-03-31 | py: Remove old "run time" functions that were 1 liners. | Damien George |
2014-03-30 | py: Fix "TypeError: 'iterator' object is not iterable", doh. | Paul Sokolovsky |
2014-03-30 | Merge map.h into obj.h. | Damien George |
2014-03-30 | Rename rt_* to mp_*. | Damien George |
2014-03-29 | py: Rename old const type objects to mp_type_* for consistency. | Damien George |
2014-03-29 | py: Change mp_const_* objects to macros. | Damien George |
2014-03-26 | Remove mp_obj_type_t.methods entry and use .locals_dict instead. | Damien George |
2014-03-26 | Change mp_method_t.name from const char * to qstr. | Damien George |
2014-03-26 | py: Replace mp_const_stop_iteration object with MP_OBJ_NULL. | Damien George |
2014-03-24 | Implement str.rfind() and add tests for it. | xbe |
2014-03-23 | py/objstr.c: Remove done TODOs. | xbe |