summaryrefslogtreecommitdiffstatshomepage
path: root/py/obj.c
Commit message (Expand)AuthorAge
* py: Add new cstack API for stack checking, with limit margin macro.Angus Gratton2024-08-14
* py/obj: Introduce mp_obj_malloc_with_finaliser to allocate and set type.Damien George2024-02-20
* py/obj: Generalise mp_get_buffer so it can raise if a flag is set.Damien George2023-10-16
* all: Fix various spelling mistakes found by codespell 2.2.6.Damien George2023-10-03
* py/obj: Accept user types in mp_obj_get_int_maybe.Damien George2023-06-01
* py: Change MP_UNARY_OP_INT to MP_UNARY_OP_INT_MAYBE.Damien George2023-06-01
* py/obj: Remove mp_generic_unary_op().David Lechner2023-05-19
* py/obj: Add MP_NOINLINE to mp_obj_malloc_helper.David Lechner2023-03-17
* py/obj: Merge getiter and iternext mp_obj_type_t slots.Jim Mussared2022-09-19
* py/obj: Add accessors for type slots and use everywhere.Jim Mussared2022-09-19
* all: Simplify buffer protocol to just a "get buffer" callback.Jim Mussared2022-09-19
* py/obj: Make mp_obj_get_complex_maybe call mp_obj_get_float_maybe first.Damien George2022-07-25
* py/obj: Add support for __float__ and __complex__ functions.Andrew Leech2022-07-25
* py/obj: Add static safety checks to mp_obj_is_type().Yonatan Goldschmidt2022-07-18
* py/obj: Introduce mp_obj_malloc macro to allocate, and set object type.Jim Mussared2022-05-03
* py: Add wrapper macros so hot VM functions can go in fast code location.Damien George2021-10-15
* py: Add option to compile without any error messages at all.Damien George2021-04-27
* py/objcomplex: Add mp_obj_get_complex_maybe for use in complex bin-op.Damien George2020-06-27
* all: Fix implicit floating point to integer conversions.stijn2020-04-18
* all: Use MP_ERROR_TEXT for all error messages.Jim Mussared2020-04-05
* py: Use preprocessor to detect error reporting level (terse/detailed).Jim Mussared2020-04-05
* all: Reformat C and Python source code with tools/codeformat.py.Damien George2020-02-28
* py: Add mp_raise_msg_varg helper and use it where appropriate.Damien George2020-02-13
* py: Expand type equality flags to 3 separate ones, fix bool/namedtuple.Damien George2020-02-11
* py: Support non-boolean results for equality and inequality tests.Nicko van Someren2020-01-30
* py/obj: Optimise mp_obj_get_type for immediate objs with repr A and C.Damien George2020-01-13
* py/obj: Add MICROPY_OBJ_IMMEDIATE_OBJS option to reduce code size.Damien George2020-01-13
* py: Make mp_obj_get_type() return a const ptr to mp_obj_type_t.Damien George2020-01-09
* py: Rename MP_QSTR_NULL to MP_QSTRnull to avoid intern collisions.Josh Lloyd2019-09-26
* py/obj: Optimise small-int comparison to 0 in mp_obj_is_true.Yonatan Goldschmidt2019-06-05
* py: Downcase all MP_OBJ_IS_xxx macros to make a more consistent C API.Damien George2019-02-12
* py/warning: Support categories for warnings.Paul Sokolovsky2019-01-31
* py/obj: Add support for __int__ special method.Paul Sokolovsky2018-12-07
* py: Shorten error messages by using contractions and some rewording.Damien George2018-09-20
* all: Remove inclusion of internal py header files.Damien George2017-10-04
* py/obj: Fix comparison of float/complex NaN with itself.Damien George2017-09-04
* py/objfloat: Fix binary ops with incompatible objects.Paul Sokolovsky2017-09-02
* all: Convert mp_uint_t to mp_unary_op_t/mp_binary_op_t where appropriateDamien George2017-08-29
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* all: Make more use of mp_raise_{msg,TypeError,ValueError} helpers.Damien George2017-06-15
* various: Spelling fixesVille Skyttä2017-05-29
* py: Convert mp_uint_t to size_t for tuple/list accessors.Damien George2017-03-29
* py: Use mp_raise_TypeError/mp_raise_ValueError helpers where possible.Damien George2017-03-28
* py/obj: Change mp_uint_t to size_t for mp_obj_get_array_fixed_n len arg.Damien George2017-03-26
* py: Use size_t as len argument and return type of mp_get_index.Damien George2017-03-23
* py: Add iter_buf to getiter type method.Damien George2017-02-16
* py/objint: Rename mp_obj_int_as_float to mp_obj_int_as_float_impl.Damien George2016-12-21
* py/{modbuiltins,obj}: Use MP_PYTHON_PRINTER where possible.Paul Sokolovsky2016-10-22
* py: Use mp_raise_msg helper function where appropriate.Damien George2016-10-17
* unix: Enable MICROPY_PY_STR_BYTES_CMP_WARN.Paul Sokolovsky2016-07-22