summaryrefslogtreecommitdiffstatshomepage
path: root/py/objstr.c
Commit message (Expand)AuthorAge
* py: Add native json printing using existing print framework.Damien George2014-09-17
* py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h.Damien George2014-08-30
* py: Remove use of int type in obj.h.Damien George2014-08-30
* py: Change all uint to mp_uint_t in obj.h.Damien George2014-08-30
* py: Make tuple and list use mp_int_t/mp_uint_t.Damien George2014-08-30
* Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George2014-08-30
* py: Use memmove instead of memcpy when appropriate.Damien George2014-08-29
* py: Improve efficiency of MP_OBJ_IS_STR_OR_BYTES.Damien George2014-08-27
* Make int(b'123') work properly.Dave Hylands2014-08-26
* py: Fix mult by negative number of tuple, list, str, bytes.Damien George2014-08-13
* py, objstr: Optimise bytes subscr when unicode is enabled.Damien George2014-08-11
* objstr: Make sure that bytes are indexed as bytes, not as unicode.Paul Sokolovsky2014-08-11
* objstr: split(): check arg type consistency (str vs bytes).Paul Sokolovsky2014-08-10
* py: Make MP_OBJ_NEW_SMALL_INT cast arg to mp_int_t itself.Damien George2014-07-31
* py: Add mp_obj_str_builder_end_with_len.Damien George2014-07-31
* Rename machine_(u)int_t to mp_(u)int_t.Damien George2014-07-03
* py: Make unichar_charlen() accept/return machine_uint_t.Paul Sokolovsky2014-06-28
* py: Small comments, name changes, use of machine_int_t.Damien George2014-06-28
* objstrunicode: Refactor str_index_to_ptr() following objstr.Paul Sokolovsky2014-06-27
* objstr: 64-bit issues.Paul Sokolovsky2014-06-27
* objstr: find(), rfind(), index(): Make return value be unicode-aware.Paul Sokolovsky2014-06-27
* objstrunicode: Re-add buffer protocol back for now, required for io.StringIO.Paul Sokolovsky2014-06-27
* py: Make MICROPY_PY_BUILTINS_STR_UNICODE=1 buildable.Paul Sokolovsky2014-06-27
* py: Prune unneeded code from objstrunicode, reuse code in objstr.Paul Sokolovsky2014-06-27
* objstr: Refactor to work with char pointers instead of indexes.Paul Sokolovsky2014-06-14
* objstr: Be 8-bit clean even for repr().Paul Sokolovsky2014-06-14
* py: Make sure getattr() works with non-interned strings (by interning them).Paul Sokolovsky2014-06-08
* Fix str.modulo when precision is specified.Dave Hylands2014-06-05
* py: Raise TypeError when trying to format non-int with %x,%o,%X.Damien George2014-06-05
* py: Small changes to objstr.c, including a bug fix.Damien George2014-06-05
* objstr: Implement "%(key)s" % {} formatting for strings and dicts.Paul Sokolovsky2014-06-05
* Replace assert(0) with a self-documenting TODO stringChris Angelico2014-06-05
* Simplify detection of quote characters in mp_str_print_quoted.Chris Angelico2014-06-04
* py, str: Replace enum with actual function pointer.Damien George2014-06-01
* Rename bultins config variables to MICROPY_PY_BUILTINS_*.Damien George2014-06-01
* objstr: str_uni_istype(): Spurious whitespace on empty lines.Paul Sokolovsky2014-05-31
* objstr: str_uni_istype(): Codestyle.Paul Sokolovsky2014-05-31
* add methods isspace(), isalpha(), isdigit(), isupper() and islower() to strKim Bauters2014-05-31
* objstr: *strip(): If nothing is stripped, don't create dup string.Paul Sokolovsky2014-05-30
* objstr: *strip(): Fix handling of one-char subject strings.Paul Sokolovsky2014-05-30
* py: Slightly improve efficiency of mp_obj_new_str; rename str_new.Damien George2014-05-25
* Change const byte* to const char* where sensible.Damien George2014-05-25
* objlist: Implement support for arbitrary (3-arg) slices.Paul Sokolovsky2014-05-25
* py: Refactor slice helpers, preparing to support arbitrary slicing.Paul Sokolovsky2014-05-25
* py: Handle case of slice start > stop in common sequence function.Paul Sokolovsky2014-05-25
* objslice: Support arbitrary objects start, stop, and step.Paul Sokolovsky2014-05-25
* Rename configuration variables controling Python features.Damien George2014-05-24
* objstr: Implement .endswith().Paul Sokolovsky2014-05-24
* py: Rename MP_OBJ_NOT_SUPPORTED to MP_OBJ_NULL.Damien George2014-05-21
* objstr: startswith(): Accept optional "start" arg.Paul Sokolovsky2014-05-15