summaryrefslogtreecommitdiff
path: root/py/objexcept.c
AgeCommit message (Expand)Author
2019-03-04py/objexcept: Fix hash of exc str created in mp_obj_new_exception_msg.Tom Collins
2019-02-12py: Downcase all MP_OBJ_IS_xxx macros to make a more consistent C API.Damien George
2018-12-10py/objexcept: Make sure mp_obj_new_exception_msg doesn't copy/format msgDamien George
2018-12-10py/objexcept: Use macros to make offsets in emergency exc buf clearer.Damien George
2018-03-17py/objexcept: Make MP_DEFINE_EXCEPTION public so ports can define excs.Damien George
2018-02-15py/objexcept: Remove long-obsolete mp_const_MemoryError_obj.Damien George
2017-12-12py/objtype: Implement better support for overriding native's __init__.Damien George
2017-12-11py/objexcept: Use INT_FMT when printing errno value.Damien George
2017-10-04all: Remove inclusion of internal py header files.Damien George
2017-09-21py/objexcept: Prevent infinite recursion when allocating exceptions.Damien George
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-04-12py: Optimise types for common case where type has a single parent type.Damien George
2017-04-10py: Make sure that static emg-exc-buffer is aligned to size of mp_obj_t.Damien George
2017-02-16py/objexcept: Convert mp_uint_t to size_t where appropriate.Damien George
2017-01-17py/objexcept: Replace if-cond and assert(0) with simple assert.Damien George
2016-11-14py/objexcept: Allow clearing traceback with 'exc.__traceback__ = None'.Paul Sokolovsky
2016-05-12py/objexcept: Don't convert errno to str in constructor, do it in print.Damien George
2016-05-12py: Add mp_errno_to_str() and use it to provide nicer OSError msgs.Damien George
2016-04-13py: add async/await/async for/async with syntaxpohmelie
2016-01-11py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*.Damien George
2016-01-11py: Change type signature of builtin funs that take variable or kw args.Damien George
2016-01-11py: Change type of .make_new and .call args: mp_uint_t becomes size_t.Damien George
2016-01-02py: Change exception traceback data to use size_t instead of mp_uint_t.Damien George
2015-11-29py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George
2015-11-29py: Add MP_ROM_* macros and mp_rom_* types and use them.Damien George
2015-07-14py: Improve allocation policy of qstr data.Damien George
2015-07-02py: Add TimeoutError exception subclassed from OSError.Daniel Campora
2015-04-20py: Make viper codegen raise proper exception (ViperTypeError) on error.Damien George
2015-04-16py: Add %q format support to mp_[v]printf, and use it.Damien George
2015-04-16py: Overhaul and simplify printf/pfenv mechanism.Damien George
2015-04-11py: Combine load_attr and store_attr type methods into one (attr).Damien George
2015-02-27py: Use m_{new,renew,del} consistently.Damien George
2015-02-27py: Fix adding of traceback so that it appends to existing info.Damien George
2015-02-23py: Implement UnicodeError.Paul Sokolovsky
2015-02-15objexcept: Optimize traceback allocation for exception.Paul Sokolovsky
2015-02-15objexcept: Optimize using messages without formatting substitutions.Paul Sokolovsky
2015-01-21py: Add mp_obj_new_str_from_vstr, and use it where relevant.Damien George
2015-01-20py: Use mp_arg_check_num in some _make_new functions.Damien George
2015-01-07py: Put all global state together in state structures.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-10-31py: Make gc.enable/disable just control auto-GC; alloc is still allowed.Damien George
2014-10-25py: Add mp_pending_exception global variable, for VM soft interrupt.Damien George
2014-10-22py: Remove unused and unneeded SystemError exception.Damien George
2014-10-15py: Fix dummy definition of BEGIN/END_ATOMIC_SECTION.Damien George
2014-09-30py: Remove IOError since it's deprecated; use OSError instead.Damien George
2014-09-25py: Tidy up exception matching; allow matching of tuple of exceptions.Damien George
2014-08-30py: Change all uint to mp_uint_t in obj.h.Damien George
2014-08-30py: Make tuple and list use mp_int_t/mp_uint_t.Damien George
2014-08-30Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George
2014-08-25stmhal: Make enable_irq and disable_irq inline functions.Damien George