summaryrefslogtreecommitdiff
path: root/py/objstr.c
AgeCommit message (Expand)Author
2015-01-04objstr: Common subexpression elimination for vstr_str(field_name).Paul Sokolovsky
2015-01-04objstr: Implement kwargs support for str.format().Paul Sokolovsky
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-12-31objstr: Fix %d-formatting of floats.Paul Sokolovsky
2014-12-24py: Make bytes objs work with more str methods; add tests.Damien George
2014-12-21py: Use str_to_int function in more places to reduce code size.Damien George
2014-12-10py: Fix function type: () -> (void).Damien George
2014-12-04py: Allow bytes/bytearray/array to be init'd by buffer protocol objects.Damien George
2014-11-27py: #if guard str_make_new when not needed.Damien George
2014-11-06py: Use shorter, static error msgs when ERROR_REPORTING_TERSE enabled.Damien George
2014-11-05py: Allow bytes object as argument to some str methods.Damien George
2014-11-05py: Allow +, in, and compare ops between bytes and bytearray/array.Damien George
2014-10-31objstr: Allow to convert any buffer proto object to str.Paul Sokolovsky
2014-10-31py: mp_obj_str_get_str(): Work with bytes too.Paul Sokolovsky
2014-10-23py: Use MP_OBJ_NULL instead of NULL in a few places.Damien George
2014-10-21py: Make mp_const_empty_bytes globally available.Damien George
2014-10-03py: Change [u]int to mp_[u]int_t in qstr.[ch], and some other places.Damien George
2014-09-25py: Simplify JSON str printing (while still conforming to JSON spec).Damien George
2014-09-17py: Add native json printing using existing print framework.Damien George
2014-08-30py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h.Damien George
2014-08-30py: Remove use of int type in obj.h.Damien George
2014-08-30py: Change all uint to mp_uint_t in obj.h.Damien George
2014-08-30py: Make tuple and list use mp_int_t/mp_uint_t.Damien George
2014-08-30Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George
2014-08-29py: Use memmove instead of memcpy when appropriate.Damien George
2014-08-27py: Improve efficiency of MP_OBJ_IS_STR_OR_BYTES.Damien George
2014-08-26Make int(b'123') work properly.Dave Hylands
2014-08-13py: Fix mult by negative number of tuple, list, str, bytes.Damien George
2014-08-11py, objstr: Optimise bytes subscr when unicode is enabled.Damien George
2014-08-11objstr: Make sure that bytes are indexed as bytes, not as unicode.Paul Sokolovsky
2014-08-10objstr: split(): check arg type consistency (str vs bytes).Paul Sokolovsky
2014-07-31py: Make MP_OBJ_NEW_SMALL_INT cast arg to mp_int_t itself.Damien George
2014-07-31py: Add mp_obj_str_builder_end_with_len.Damien George
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
2014-06-28py: Make unichar_charlen() accept/return machine_uint_t.Paul Sokolovsky
2014-06-28py: Small comments, name changes, use of machine_int_t.Damien George
2014-06-27objstrunicode: Refactor str_index_to_ptr() following objstr.Paul Sokolovsky
2014-06-27objstr: 64-bit issues.Paul Sokolovsky
2014-06-27objstr: find(), rfind(), index(): Make return value be unicode-aware.Paul Sokolovsky
2014-06-27objstrunicode: Re-add buffer protocol back for now, required for io.StringIO.Paul Sokolovsky
2014-06-27py: Make MICROPY_PY_BUILTINS_STR_UNICODE=1 buildable.Paul Sokolovsky
2014-06-27py: Prune unneeded code from objstrunicode, reuse code in objstr.Paul Sokolovsky
2014-06-14objstr: Refactor to work with char pointers instead of indexes.Paul Sokolovsky
2014-06-14objstr: Be 8-bit clean even for repr().Paul Sokolovsky
2014-06-08py: Make sure getattr() works with non-interned strings (by interning them).Paul Sokolovsky
2014-06-05Fix str.modulo when precision is specified.Dave Hylands
2014-06-05py: Raise TypeError when trying to format non-int with %x,%o,%X.Damien George
2014-06-05py: Small changes to objstr.c, including a bug fix.Damien George
2014-06-05objstr: Implement "%(key)s" % {} formatting for strings and dicts.Paul Sokolovsky
2014-06-05Replace assert(0) with a self-documenting TODO stringChris Angelico