index
:
suspect-devices/circuitpython
1.x
2.x
3.x
4.0.x
4.1.x
4.x
5.0.x
5.1.x
5.3.x
6.0.x
6.1.x
6.2.x
audiocore-rawsample-sinewave
azure
azure-pipelines
cross
dm-mixer
dynamic-native-modules
encoding
esp-extra-scripts
fix_typo_spanish
iabdalkader-cc3k-update
jepler-try-ubuntu-20.04
main
master
parse-bytecode
reentrant-gc
stable
travis-clang
travis-esp8266
travis-stackless
travis-testing
type_hints
CircuitPython - a Python implementation for teaching coding with microcontrollers
feurig
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
py
/
objstr.c
Age
Commit message (
Expand
)
Author
2017-08-25
Initial merge of micropython v1.9.2 into circuitpython 2.0.0 (in development)...
Dan Halbert
2017-08-13
all: Raise exceptions via mp_raise_XXX
Javier Candeira
2017-08-09
py/objstr: Raise an exception for wrong type on RHS of str binary op.
Damien George
2017-07-31
all: Use the name MicroPython consistently in comments
Alexander Steffen
2017-07-04
py/objstr: Remove unnecessary "sign" variable in formatting code.
Damien George
2017-07-02
py/objstr: Move uPy function wrappers to just after the C function.
Damien George
2017-06-20
Merge tag 'v1.9.1'
2.0.0-alpha.0
Scott Shawcroft
2017-06-08
py/objstr: Allow to compile with obj-repr D, and unicode disabled.
Damien George
2017-06-02
py/objstr: Catch case of negative "maxsplit" arg to str.rsplit().
Damien George
2017-05-29
various: Spelling fixes
Ville Skyttä
2017-04-02
py/objstr: Use MICROPY_FULL_CHECKS for range checking when constructing bytes.
Paul Sokolovsky
2017-03-29
py: Change mp_uint_t to size_t for mp_obj_str_get_data len arg.
Damien George
2017-03-29
py: Convert mp_uint_t to size_t for tuple/list accessors.
Damien George
2017-03-23
py: Use size_t as len argument and return type of mp_get_index.
Damien George
2017-03-20
py/objstr: Use better msg in bad implicit str/bytes conversion exception
stijn
2017-03-16
py/objstr: Fix eager optimisation of str/bytes addition.
Damien George
2017-03-07
py: Use mp_obj_get_array where sequence may be a tuple or a list.
Krzysztof Blazewicz
2017-02-24
Correct name of mp_raise_NotImplementedError to make error name.
Scott Shawcroft
2017-02-24
Switch exception throwing to mp_raise helpers. It saves a little code space e...
Scott Shawcroft
2017-02-16
py: Add iter_buf to getiter type method.
Damien George
2017-02-16
py/objstr: Convert mp_uint_t to size_t (and use int) where appropriate.
Damien George
2017-02-03
py/objstr: Convert some instances of mp_uint_t to size_t.
Damien George
2017-02-03
py/objstr: Give correct behaviour when passing a dict to %-formatting.
Damien George
2017-01-27
py/objstr: Optimize string concatenation with empty string.
Paul Sokolovsky
2016-09-27
py/objstr: Remove unreachable function used only for terse error msgs.
Damien George
2016-09-02
py: If str/bytes hash is 0 then explicitly compute it.
Damien George
2016-08-14
py/objstr: Use mp_raise_{Type,Value}Error instead of mp_raise_msg.
Damien George
2016-08-12
py: Get rid of assert() in method argument checking functions.
Paul Sokolovsky
2016-08-12
py/runtime: Factor out exception raising helpers.
Paul Sokolovsky
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
[next]