summaryrefslogtreecommitdiffstatshomepage
path: root/py/objexcept.c
Commit message (Expand)AuthorAge
* all: Remove the "STATIC" macro and just use "static" instead.Angus Gratton2024-03-07
* py/mphal: Move configuration of ATOMIC_SECTION macros to mphal.h.Damien George2023-12-01
* py/misc: Change sizeof to offsetof for variable-length alloc.Jim Mussared2023-11-03
* all: Rename UMODULE to MODULE in preprocessor/Makefile vars.Jim Mussared2023-06-08
* all: Fix spelling mistakes based on codespell check.Damien George2023-04-27
* py/obj: Optimise code size and performance for make_new as a slot.Jim Mussared2022-09-19
* py/obj: Convert make_new into a mp_obj_type_t slot.Jim Mussared2022-09-19
* all: Make all mp_obj_type_t defs use MP_DEFINE_CONST_OBJ_TYPE.Jim Mussared2022-09-19
* py/obj: Add static safety checks to mp_obj_is_type().Yonatan Goldschmidt2022-07-18
* py/modsys: Add optional sys.tracebacklimit attribute.Damien George2022-03-10
* py/objexcept: Make mp_obj_new_exception_arg1 inline.Damien George2021-07-15
* py/objexcept: Make mp_obj_exception_get_value support subclassed excs.Damien George2021-07-15
* py/objexcept: Pretty print OSError also when it has 2 arguments.David Lechner2021-07-01
* py: Add option to compile without any error messages at all.Damien George2021-04-27
* py/objexcept: Support errno attribute on OSError exceptions.Damien George2021-04-23
* py/objexcept: Compare mp_emergency_exception_buf_size signed.Emil Renner Berthing2020-10-22
* py: Always give noop defines when MICROPY_ROM_TEXT_COMPRESSION disabled.Damien George2020-04-14
* py/objexcept: Remove optional TimeoutError exception.Damien George2020-04-09
* py/objexcept: Allow compression of exception message text.Jim Mussared2020-04-05
* all: Reformat C and Python source code with tools/codeformat.py.Damien George2020-02-28
* all: Add *FORMAT-OFF* in various places.Damien George2020-02-28
* py/objexcept: Rename mp_obj_new_exception_msg_varg2 to ..._vlist.Damien George2020-02-18
* py: Add mp_raise_msg_varg helper and use it where appropriate.Damien George2020-02-13
* py/objexcept: Optimise mp_obj_new_exception[_arg1/_args] functions.Damien George2020-01-23
* py: Clean up commented-out code and comments about exception hierarchy.Damien George2019-12-28
* py: Rename MP_QSTR_NULL to MP_QSTRnull to avoid intern collisions.Josh Lloyd2019-09-26
* py/objgenerator: Move defn of mp_const_GeneratorExit_obj here.Damien George2019-08-22
* various: Add and update my copyright line based on git history.Paul Sokolovsky2019-05-17
* py/objexcept: Fix hash of exc str created in mp_obj_new_exception_msg.Tom Collins2019-03-04
* py: Downcase all MP_OBJ_IS_xxx macros to make a more consistent C API.Damien George2019-02-12
* py/objexcept: Make sure mp_obj_new_exception_msg doesn't copy/format msgDamien George2018-12-10
* py/objexcept: Use macros to make offsets in emergency exc buf clearer.Damien George2018-12-10
* py/objexcept: Make MP_DEFINE_EXCEPTION public so ports can define excs.Damien George2018-03-17
* py/objexcept: Remove long-obsolete mp_const_MemoryError_obj.Damien George2018-02-15
* py/objtype: Implement better support for overriding native's __init__.Damien George2017-12-12
* py/objexcept: Use INT_FMT when printing errno value.Damien George2017-12-11
* all: Remove inclusion of internal py header files.Damien George2017-10-04
* py/objexcept: Prevent infinite recursion when allocating exceptions.Damien George2017-09-21
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* py: Optimise types for common case where type has a single parent type.Damien George2017-04-12
* py: Make sure that static emg-exc-buffer is aligned to size of mp_obj_t.Damien George2017-04-10
* py/objexcept: Convert mp_uint_t to size_t where appropriate.Damien George2017-02-16
* py/objexcept: Replace if-cond and assert(0) with simple assert.Damien George2017-01-17
* py/objexcept: Allow clearing traceback with 'exc.__traceback__ = None'.Paul Sokolovsky2016-11-14
* py/objexcept: Don't convert errno to str in constructor, do it in print.Damien George2016-05-12
* py: Add mp_errno_to_str() and use it to provide nicer OSError msgs.Damien George2016-05-12
* py: add async/await/async for/async with syntaxpohmelie2016-04-13
* py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*.Damien George2016-01-11
* py: Change type signature of builtin funs that take variable or kw args.Damien George2016-01-11
* py: Change type of .make_new and .call args: mp_uint_t becomes size_t.Damien George2016-01-11