summaryrefslogtreecommitdiff
path: root/py/objexcept.c
AgeCommit message (Expand)Author
2020-07-06Add license to some obvious files.Diego Elio Pettenò
2020-05-28string compression: save a few bits per stringJeff Epler
2020-02-04fix printing single-arg exceptionsDan Halbert
2020-02-04fix multi-arg exception printingDan Halbert
2020-02-04preserve errno in OSErrorDan Halbert
2019-05-08Make MpyError a ValueError (since that's what it was before)Terri Oda
2019-05-08Make status light flash blue for incompatible mpy (fixes #1369)Terri Oda
2019-01-14py changes for supporting superclass constructors that take kwargsScott Shawcroft
2018-11-13Support OSError attributesNoralf Trønnes
2018-10-07modsys: exc_info: Add tracebackNoralf Trønnes
2018-08-16Fix test that broke due to decompressing to too small of a scope.Scott Shawcroft
2018-08-16Compress all translated strings with Huffman coding.Scott Shawcroft
2018-08-09Two fixes and translate more strings.Scott Shawcroft
2018-07-11WIP: after merge; before testingDan Halbert
2018-06-01Provide mp_errno_to_str even without uerrnoMatt Wozniski
2018-05-16Merge pull request #838 from rhooper/masterScott Shawcroft
2018-05-14Initial implementation of supervisor.reload()Roy Hooper
2018-05-13 add timeout keyword to I2C - for bitbangio - ignored for busioJerry Needell
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-24Merge commit 'f869d6b2e339c04469c6c9ea3fb2fabd7bbb2d8c' into nrf2_mergeScott Shawcroft
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-08-25Initial merge of micropython v1.9.2 into circuitpython 2.0.0 (in development)...Dan Halbert
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-06-20Merge tag 'v1.9.1'2.0.0-alpha.0Scott Shawcroft
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-24py: Fix varg helpers by adding vlist variant of mp_obj_new_exception_msgScott Shawcroft
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