summaryrefslogtreecommitdiffstatshomepage
path: root/py/objexcept.c
Commit message (Expand)AuthorAge
* 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
* py: Change exception traceback data to use size_t instead of mp_uint_t.Damien George2016-01-02
* py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George2015-11-29
* py: Add MP_ROM_* macros and mp_rom_* types and use them.Damien George2015-11-29
* py: Improve allocation policy of qstr data.Damien George2015-07-14
* py: Add TimeoutError exception subclassed from OSError.Daniel Campora2015-07-02
* py: Make viper codegen raise proper exception (ViperTypeError) on error.Damien George2015-04-20
* py: Add %q format support to mp_[v]printf, and use it.Damien George2015-04-16
* py: Overhaul and simplify printf/pfenv mechanism.Damien George2015-04-16
* py: Combine load_attr and store_attr type methods into one (attr).Damien George2015-04-11
* py: Use m_{new,renew,del} consistently.Damien George2015-02-27
* py: Fix adding of traceback so that it appends to existing info.Damien George2015-02-27
* py: Implement UnicodeError.Paul Sokolovsky2015-02-23
* objexcept: Optimize traceback allocation for exception.Paul Sokolovsky2015-02-15
* objexcept: Optimize using messages without formatting substitutions.Paul Sokolovsky2015-02-15
* py: Add mp_obj_new_str_from_vstr, and use it where relevant.Damien George2015-01-21
* py: Use mp_arg_check_num in some _make_new functions.Damien George2015-01-20
* py: Put all global state together in state structures.Damien George2015-01-07
* py: Move to guarded includes, everywhere in py/ core.Damien George2015-01-01
* py: Make gc.enable/disable just control auto-GC; alloc is still allowed.Damien George2014-10-31
* py: Add mp_pending_exception global variable, for VM soft interrupt.Damien George2014-10-25
* py: Remove unused and unneeded SystemError exception.Damien George2014-10-22
* py: Fix dummy definition of BEGIN/END_ATOMIC_SECTION.Damien George2014-10-15
* py: Remove IOError since it's deprecated; use OSError instead.Damien George2014-09-30
* py: Tidy up exception matching; allow matching of tuple of exceptions.Damien George2014-09-25
* py: Change all uint to mp_uint_t in obj.h.Damien George2014-08-30
* py: Make tuple and list use mp_int_t/mp_uint_t.Damien George2014-08-30
* Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George2014-08-30
* stmhal: Make enable_irq and disable_irq inline functions.Damien George2014-08-25
* Add save/restore_irqDave Hylands2014-08-25
* Add support for storing args during an exception raised by an irq.Dave Hylands2014-07-25
* Rename machine_(u)int_t to mp_(u)int_t.Damien George2014-07-03
* py, objexcept: Only check for locked gc if gc is enabled.Damien George2014-07-01
* Try not to cause a MemoryError when raising an exception during nterrupt hand...Dave Hylands2014-06-30
* Change comments (mainly URLs) to no longer specifically say Python 3.3Chris Angelico2014-06-06
* Change const byte* to const char* where sensible.Damien George2014-05-25
* Add SystemExit exception and use it in unix/ and stmhal/ ports.Damien George2014-05-24
* Merge pull request #607 from Anton-2/osx-clangDamien George2014-05-21
|\
| * Fix some unused variables, and silence a clang warning about initialization o...Antonin ENFRUN2014-05-12