Age | Commit message (Expand) | Author |
2016-08-07 | py/objstr,objstrunicode: Fix inconistent #if indentation. | Paul Sokolovsky |
2016-08-07 | py/objstr: Make .partition()/.rpartition() methods configurable. | Paul Sokolovsky |
2016-05-22 | py/objstr: Fix mix-signed comparison in str.center(). | Paul Sokolovsky |
2016-05-22 | py/objstr*: Properly ifdef str.center(). | Dave Hylands |
2016-05-22 | py/objstr: Implement str.center(). | Paul Sokolovsky |
2016-05-13 | py/objstr: Make dedicated splitlines function, supporting diff newlines. | Damien George |
2016-05-09 | Revert "py/objstr: .format(): Avoid call to vstr_null_terminated_str()." | Paul Sokolovsky |
2016-05-09 | py/objstr: .format(): Avoid call to vstr_null_terminated_str(). | Paul Sokolovsky |
2016-05-07 | py/objstr: Binary type of str/bytes for buffer protocol is 'B'. | Damien George |
2016-04-14 | py/makeqstrdata: Add special case to handle \n qstr. | Damien George |
2016-02-14 | py/objarray: Implement "in" operator for bytearray. | Paul Sokolovsky |
2016-02-02 | py/objstr: Make mp_obj_str_format_helper static. | Damien George |
2016-02-02 | py/objstr: For str.format, don't allocate on the heap for field name. | Damien George |
2016-02-02 | py/objstr: For str.format, add nested/computed fields support. | pohmelie |
2016-01-13 | py: Use new code pattern for parsing kw args with mp_arg_parse_all. | Damien George |
2016-01-11 | py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*. | Damien George |
2016-01-11 | py: Change type signature of builtin funs that take variable or kw args. | Damien George |
2016-01-11 | py: Change type of .make_new and .call args: mp_uint_t becomes size_t. | Damien George |
2016-01-04 | py/objstr: In str.format, handle case of no format spec for string arg. | Damien George |
2016-01-03 | py: Use polymorphic iterator type where possible to reduce code size. | Damien George |
2015-12-20 | py/objstr: Applying % (format) operator to bytes should return bytes, not str. | Paul Sokolovsky |
2015-12-20 | py/objstr: Make sure that b"%s" % b"foo" uses undecorated bytes value. | Paul Sokolovsky |
2015-11-29 | py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. | Damien George |
2015-11-29 | py: Add MP_ROM_* macros and mp_rom_* types and use them. | Damien George |
2015-11-29 | py: Change qstr_* functions to use size_t as the type for str len arg. | Damien George |
2015-10-20 | py: With obj repr "C", change raw str accessor from macro to function. | Damien George |
2015-10-20 | py: Add mp_obj_is_float function (macro) and use it where appropriate. | Damien George |
2015-10-11 | py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. | Paul Sokolovsky |
2015-09-04 | py: Eliminate some cases which trigger unused parameter warnings. | Damien George |
2015-09-04 | py/objstr: Check for keyword args before checking for no posn args. | Damien George |
2015-09-04 | py/objstr: For str.endswith(s, start) raise NotImpl instead of assert. | Damien George |
2015-09-03 | py: Use mp_not_implemented consistently for not implemented features. | Damien George |
2015-09-03 | py/objstr: Simplify printing of bytes objects when unicode enabled. | Damien George |
2015-09-03 | py: Inline single use of mp_obj_str_get_len in mp_obj_len_maybe. | Damien George |
2015-09-01 | py/objstr: Make str.rsplit(None,n) raise NotImpl instead of assert(0). | Damien George |
2015-08-30 | py/objstr: Simplify error handling for bad conversion specifier. | Damien George |
2015-08-29 | py/objstr: Fix error reporting for unexpected end of modulo format str. | Damien George |
2015-08-29 | py/objstr: Fix error type for badly formatted format specifier. | Damien George |
2015-08-29 | py/objstr: Make string formatting 8-bit clean. | Damien George |
2015-07-06 | py: Prevent many extra vstr allocations. | Dave Hylands |
2015-06-26 | objstr: Add note that replace() is nicely optimized. | Paul Sokolovsky |
2015-05-28 | py: Remove unnecessary extra handling of padding of nan/inf. | Damien George |
2015-05-17 | py: Clean up declarations of str type/funcs that are also in unicode. | Damien George |
2015-05-12 | py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function. | Damien George |
2015-04-23 | py: Add optional code to check bytes constructor values are in range. | Damien George |
2015-04-16 | py: Overhaul and simplify printf/pfenv mechanism. | Damien George |
2015-04-12 | objstr: split(None): Fix whitespace properly. | Paul Sokolovsky |
2015-04-04 | py: Some trivial cosmetic changes, for code style consistency. | Damien George |
2015-04-04 | objstr: Fix bugs introduced by inability to have shadow variables. | Paul Sokolovsky |
2015-04-04 | objstr: Avoid variable shadowing. | Paul Sokolovsky |