index
:
micropython
master
parse-bytecode
v1.22-release
v1.24-release
MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems
Aslak Raanes
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
py
/
objexcept.c
Commit message (
Expand
)
Author
Age
*
all: Remove the "STATIC" macro and just use "static" instead.
Angus Gratton
2024-03-07
*
py/mphal: Move configuration of ATOMIC_SECTION macros to mphal.h.
Damien George
2023-12-01
*
py/misc: Change sizeof to offsetof for variable-length alloc.
Jim Mussared
2023-11-03
*
all: Rename UMODULE to MODULE in preprocessor/Makefile vars.
Jim Mussared
2023-06-08
*
all: Fix spelling mistakes based on codespell check.
Damien George
2023-04-27
*
py/obj: Optimise code size and performance for make_new as a slot.
Jim Mussared
2022-09-19
*
py/obj: Convert make_new into a mp_obj_type_t slot.
Jim Mussared
2022-09-19
*
all: Make all mp_obj_type_t defs use MP_DEFINE_CONST_OBJ_TYPE.
Jim Mussared
2022-09-19
*
py/obj: Add static safety checks to mp_obj_is_type().
Yonatan Goldschmidt
2022-07-18
*
py/modsys: Add optional sys.tracebacklimit attribute.
Damien George
2022-03-10
*
py/objexcept: Make mp_obj_new_exception_arg1 inline.
Damien George
2021-07-15
*
py/objexcept: Make mp_obj_exception_get_value support subclassed excs.
Damien George
2021-07-15
*
py/objexcept: Pretty print OSError also when it has 2 arguments.
David Lechner
2021-07-01
*
py: Add option to compile without any error messages at all.
Damien George
2021-04-27
*
py/objexcept: Support errno attribute on OSError exceptions.
Damien George
2021-04-23
*
py/objexcept: Compare mp_emergency_exception_buf_size signed.
Emil Renner Berthing
2020-10-22
*
py: Always give noop defines when MICROPY_ROM_TEXT_COMPRESSION disabled.
Damien George
2020-04-14
*
py/objexcept: Remove optional TimeoutError exception.
Damien George
2020-04-09
*
py/objexcept: Allow compression of exception message text.
Jim Mussared
2020-04-05
*
all: Reformat C and Python source code with tools/codeformat.py.
Damien George
2020-02-28
*
all: Add *FORMAT-OFF* in various places.
Damien George
2020-02-28
*
py/objexcept: Rename mp_obj_new_exception_msg_varg2 to ..._vlist.
Damien George
2020-02-18
*
py: Add mp_raise_msg_varg helper and use it where appropriate.
Damien George
2020-02-13
*
py/objexcept: Optimise mp_obj_new_exception[_arg1/_args] functions.
Damien George
2020-01-23
*
py: Clean up commented-out code and comments about exception hierarchy.
Damien George
2019-12-28
*
py: Rename MP_QSTR_NULL to MP_QSTRnull to avoid intern collisions.
Josh Lloyd
2019-09-26
*
py/objgenerator: Move defn of mp_const_GeneratorExit_obj here.
Damien George
2019-08-22
*
various: Add and update my copyright line based on git history.
Paul Sokolovsky
2019-05-17
*
py/objexcept: Fix hash of exc str created in mp_obj_new_exception_msg.
Tom Collins
2019-03-04
*
py: Downcase all MP_OBJ_IS_xxx macros to make a more consistent C API.
Damien George
2019-02-12
*
py/objexcept: Make sure mp_obj_new_exception_msg doesn't copy/format msg
Damien George
2018-12-10
*
py/objexcept: Use macros to make offsets in emergency exc buf clearer.
Damien George
2018-12-10
*
py/objexcept: Make MP_DEFINE_EXCEPTION public so ports can define excs.
Damien George
2018-03-17
*
py/objexcept: Remove long-obsolete mp_const_MemoryError_obj.
Damien George
2018-02-15
*
py/objtype: Implement better support for overriding native's __init__.
Damien George
2017-12-12
*
py/objexcept: Use INT_FMT when printing errno value.
Damien George
2017-12-11
*
all: Remove inclusion of internal py header files.
Damien George
2017-10-04
*
py/objexcept: Prevent infinite recursion when allocating exceptions.
Damien George
2017-09-21
*
all: Use the name MicroPython consistently in comments
Alexander Steffen
2017-07-31
*
py: Optimise types for common case where type has a single parent type.
Damien George
2017-04-12
*
py: Make sure that static emg-exc-buffer is aligned to size of mp_obj_t.
Damien George
2017-04-10
*
py/objexcept: Convert mp_uint_t to size_t where appropriate.
Damien George
2017-02-16
*
py/objexcept: Replace if-cond and assert(0) with simple assert.
Damien George
2017-01-17
*
py/objexcept: Allow clearing traceback with 'exc.__traceback__ = None'.
Paul Sokolovsky
2016-11-14
*
py/objexcept: Don't convert errno to str in constructor, do it in print.
Damien George
2016-05-12
*
py: Add mp_errno_to_str() and use it to provide nicer OSError msgs.
Damien George
2016-05-12
*
py: add async/await/async for/async with syntax
pohmelie
2016-04-13
*
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-11
[next]