index
:
user/sven/micropython.git
for-upstream
master
old
stmhal-flash
origin/HEAD
origin/dependabot/github_actions/actions/checkout-6
origin/dependabot/github_actions/actions/upload-artifact-5
origin/master
origin/parse-bytecode
origin/v1.22-release
origin/v1.24-release
origin/v1.26-release
The MicroPython project
Sven Wegener
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
py
/
objarray.c
Age
Commit message (
Expand
)
Author
2024-04-22
py/objarray: Fix use-after-free if extending a bytearray from itself.
Angus Gratton
2024-03-07
all: Remove the "STATIC" macro and just use "static" instead.
Angus Gratton
2023-05-19
py/objarray: Disallow memoryview addition.
Damien George
2023-01-20
py/objarray: Raise error on out-of-bound memoryview slice start.
Andrew Leech
2022-11-08
py/objarray: Detect bytearray(str) without an encoding.
Jim Mussared
2022-09-19
py/obj: Convert make_new into a mp_obj_type_t slot.
Jim Mussared
2022-09-19
py/obj: Merge getiter and iternext mp_obj_type_t slots.
Jim Mussared
2022-09-19
py/obj: Add accessors for type slots and use everywhere.
Jim Mussared
2022-09-19
all: Remove unnecessary locals_dict cast.
Jim Mussared
2022-09-19
all: Fix #if inside MP_DEFINE_CONST_OBJ_TYPE for msvc.
Jim Mussared
2022-09-19
all: Make all mp_obj_type_t defs use MP_DEFINE_CONST_OBJ_TYPE.
Jim Mussared
2022-09-19
all: Simplify buffer protocol to just a "get buffer" callback.
Jim Mussared
2022-08-12
py/objstr: Add hex/fromhex to bytes/memoryview/bytearray.
Jim Mussared
2022-08-11
py/objstr: Consolidate methods for str/bytes/bytearray/array.
Andrew Leech
2022-05-03
all: Use mp_obj_malloc everywhere it's applicable.
Jim Mussared
2021-05-18
py/objarray: Fix constructing a memoryview from a memoryview.
Damien George
2021-05-18
py/objarray: Use mp_obj_memoryview_init helper in mp_obj_new_memoryview.
Damien George
2021-05-13
py/objarray: Implement more/less comparisons for array.
stijn
2021-05-13
py/objarray: Prohibit comparison of mismatching types.
stijn
2021-03-26
py: Rename remaining object types to be of the form mp_type_xxx.
Damien George
2020-04-18
py/objarray: Fix sign mismatch in comparison.
stijn
2020-04-18
Revert "all: Fix implicit casts of float/double, and signed comparison."
stijn
2020-04-05
all: Use MP_ERROR_TEXT for all error messages.
Jim Mussared
2020-03-30
all: Fix implicit casts of float/double, and signed comparison.
David Lechner
2020-02-28
all: Reformat C and Python source code with tools/codeformat.py.
Damien George
2020-02-21
py/objarray: Turn on MP_TYPE_FLAG_EQ_CHECKS_OTHER_TYPE for memoryview.
Jim Mussared
2020-02-11
py: Expand type equality flags to 3 separate ones, fix bool/namedtuple.
Damien George
2020-01-30
py: Support non-boolean results for equality and inequality tests.
Nicko van Someren
2019-08-15
py/objarray: Fix amount of free space in array when doing slice assign.
Damien George
2019-05-21
py/objarray: Add decode method to bytearray.
stijn
2019-05-14
py/objarray: Add support for memoryview.itemsize attribute.
stijn
2019-05-06
py: remove "if (0)" and "if (false)" branches.
Jun Wu
2019-02-12
py: Downcase all MP_OBJ_IS_xxx macros to make a more consistent C API.
Damien George
2018-12-20
py/objarray: Introduce "memview_offset" alias for "free" field of object
Paul Sokolovsky
2018-09-11
py/objarray: bytearray: Allow 2nd/3rd arg to constructor.
Paul Sokolovsky
2018-08-14
py/objarray: Allow to build again when bytearray is disabled.
Damien George
2018-06-18
py/objarray: Replace 0x80 with new MP_OBJ_ARRAY_TYPECODE_FLAG_RW macro.
Damien George
2017-11-24
py/runtime: Add MP_BINARY_OP_CONTAINS as reverse of MP_BINARY_OP_IN.
Damien George
2017-10-24
all: Use NULL instead of "" when calling mp_raise exception helpers.
Damien George
2017-10-04
all: Remove inclusion of internal py header files.
Damien George
2017-08-29
all: Convert mp_uint_t to mp_unary_op_t/mp_binary_op_t where appropriate
Damien George
2017-08-13
all: Raise exceptions via mp_raise_XXX
Javier Candeira
2017-07-31
all: Use the name MicroPython consistently in comments
Alexander Steffen
2017-03-28
py: Use mp_raise_TypeError/mp_raise_ValueError helpers where possible.
Damien George
2017-03-25
py/objarray: Use mp_obj_str_get_str instead of mp_obj_str_get_data.
Damien George
2017-03-23
py: Use size_t as len argument and return type of mp_get_index.
Damien George
2017-02-27
py/objarray: Disallow slice-assignment to read-only memoryview.
Damien George
2017-02-16
py: De-optimise some uses of mp_getiter, so they don't use the C stack.
Damien George
2017-02-16
py: Add iter_buf to getiter type method.
Damien George
2017-02-16
py/objarray: Convert mp_uint_t to size_t where appropriate.
Damien George
[next]