| Commit message (Expand) | Author | Age |
* | objstr: Fix bytes creation from array of long ints. | Paul Sokolovsky | 2015-02-09 |
* | py: Change vstr_null_terminate -> vstr_null_terminated_str, returns str. | Damien George | 2015-01-29 |
* | py: Change vstr so that it doesn't null terminate buffer by default. | Damien George | 2015-01-28 |
* | py: bytes(): Make sure we add values as bytes, not as chars. | Paul Sokolovsky | 2015-01-28 |
* | py: Remove duplicated mp_obj_str_make_new function from objstrunicode.c. | Damien George | 2015-01-28 |
* | objstr: Remove code duplication and unbreak Windows build. | Paul Sokolovsky | 2015-01-23 |
* | objstr*: Use separate names for locals_dict of 8-bit and unicode str's. | Paul Sokolovsky | 2015-01-23 |
* | py: Add comments for vstr_init and mp_obj_new_str. | Damien George | 2015-01-21 |
* | py: Remove mp_obj_str_builder and use vstr instead. | Damien George | 2015-01-21 |
* | py: Add mp_obj_new_str_from_vstr, and use it where relevant. | Damien George | 2015-01-21 |
* | py, unix: Allow to compile with -Wunused-parameter. | Damien George | 2015-01-20 |
* | py, unix, stmhal: Allow to compile with -Wshadow. | Damien George | 2015-01-20 |
* | py, unix: Allow to compile with -Wsign-compare. | Damien George | 2015-01-16 |
* | py, unix: Allow to compile with -Wdouble-promotion. | Damien George | 2015-01-12 |
* | py: Remove unnecessary BINARY_OP_EQUAL code that just checks pointers. | Damien George | 2015-01-11 |
* | objstr: Common subexpression elimination for vstr_str(field_name). | Paul Sokolovsky | 2015-01-04 |
* | objstr: Implement kwargs support for str.format(). | Paul Sokolovsky | 2015-01-04 |
* | py: Move to guarded includes, everywhere in py/ core. | Damien George | 2015-01-01 |
* | objstr: Fix %d-formatting of floats. | Paul Sokolovsky | 2014-12-31 |
* | py: Make bytes objs work with more str methods; add tests. | Damien George | 2014-12-24 |
* | py: Use str_to_int function in more places to reduce code size. | Damien George | 2014-12-21 |
* | py: Fix function type: () -> (void). | Damien George | 2014-12-10 |
* | py: Allow bytes/bytearray/array to be init'd by buffer protocol objects. | Damien George | 2014-12-04 |
* | py: #if guard str_make_new when not needed. | Damien George | 2014-11-27 |
* | py: Use shorter, static error msgs when ERROR_REPORTING_TERSE enabled. | Damien George | 2014-11-06 |
* | py: Allow bytes object as argument to some str methods. | Damien George | 2014-11-05 |
* | py: Allow +, in, and compare ops between bytes and bytearray/array. | Damien George | 2014-11-05 |
* | objstr: Allow to convert any buffer proto object to str. | Paul Sokolovsky | 2014-10-31 |
* | py: mp_obj_str_get_str(): Work with bytes too. | Paul Sokolovsky | 2014-10-31 |
* | py: Use MP_OBJ_NULL instead of NULL in a few places. | Damien George | 2014-10-23 |
* | py: Make mp_const_empty_bytes globally available. | Damien George | 2014-10-21 |
* | py: Change [u]int to mp_[u]int_t in qstr.[ch], and some other places. | Damien George | 2014-10-03 |
* | py: Simplify JSON str printing (while still conforming to JSON spec). | Damien George | 2014-09-25 |
* | py: Add native json printing using existing print framework. | Damien George | 2014-09-17 |
* | py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h. | Damien George | 2014-08-30 |
* | py: Remove use of int type in obj.h. | Damien George | 2014-08-30 |
* | py: Change all uint to mp_uint_t in obj.h. | Damien George | 2014-08-30 |
* | py: Make tuple and list use mp_int_t/mp_uint_t. | Damien George | 2014-08-30 |
* | Change some parts of the core API to use mp_uint_t instead of uint/int. | Damien George | 2014-08-30 |
* | py: Use memmove instead of memcpy when appropriate. | Damien George | 2014-08-29 |
* | py: Improve efficiency of MP_OBJ_IS_STR_OR_BYTES. | Damien George | 2014-08-27 |
* | Make int(b'123') work properly. | Dave Hylands | 2014-08-26 |
* | py: Fix mult by negative number of tuple, list, str, bytes. | Damien George | 2014-08-13 |
* | py, objstr: Optimise bytes subscr when unicode is enabled. | Damien George | 2014-08-11 |
* | objstr: Make sure that bytes are indexed as bytes, not as unicode. | Paul Sokolovsky | 2014-08-11 |
* | objstr: split(): check arg type consistency (str vs bytes). | Paul Sokolovsky | 2014-08-10 |
* | py: Make MP_OBJ_NEW_SMALL_INT cast arg to mp_int_t itself. | Damien George | 2014-07-31 |
* | py: Add mp_obj_str_builder_end_with_len. | Damien George | 2014-07-31 |
* | Rename machine_(u)int_t to mp_(u)int_t. | Damien George | 2014-07-03 |
* | py: Make unichar_charlen() accept/return machine_uint_t. | Paul Sokolovsky | 2014-06-28 |