aboutsummaryrefslogtreecommitdiff
path: root/py/objexcept.c
AgeCommit message (Expand)Author
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
2014-08-25Add save/restore_irqDave Hylands
2014-07-25Add support for storing args during an exception raised by an irq.Dave Hylands
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
2014-07-01py, objexcept: Only check for locked gc if gc is enabled.Damien George
2014-06-30Try not to cause a MemoryError when raising an exception during nterrupt hand...Dave Hylands
2014-06-06Change comments (mainly URLs) to no longer specifically say Python 3.3Chris Angelico
2014-05-25Change const byte* to const char* where sensible.Damien George
2014-05-24Add SystemExit exception and use it in unix/ and stmhal/ ports.Damien George
2014-05-21Merge pull request #607 from Anton-2/osx-clangDamien George
2014-05-19objexcept: Implement explicit __init__ method, useful for subclasses.Paul Sokolovsky
2014-05-12Fix some unused variables, and silence a clang warning about initialization o...Antonin ENFRUN
2014-05-11py: Rename globally-accessible tuple functions, prefix with mp_obj_.Damien George
2014-05-03Add license header to (almost) all files.Damien George
2014-05-02py, unix: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky
2014-05-02objexcept: Support tracebacks for user Exception subclasses.Paul Sokolovsky
2014-05-02objtype: .print() Exception instances in adhoc way.Paul Sokolovsky
2014-04-23objexcept: Don't store args tuple within exception object.Paul Sokolovsky
2014-04-22objexcept: Add mp_obj_new_exception_arg1() convenience function.Paul Sokolovsky
2014-04-10py: Check explicitly for memory allocation failure in parser.Damien George
2014-04-10py: Add emergency exception object for when heap allocation fails.Damien George
2014-04-05py: Change nlr_jump to nlr_raise, to aid in debugging.Damien George
2014-04-04py: Add m_malloc_fail function to handle memory allocation error.Damien George
2014-03-31objexcept: No more magic messages in exceptions, only exception arguments.Paul Sokolovsky
2014-03-30Rename rt_* to mp_*.Damien George
2014-03-30objexcept: Fix another place missing proper args tuple initialization.Paul Sokolovsky
2014-03-29py: Change mp_const_* objects to macros.Damien George
2014-03-28objgenerator: close(): Throw instance of GeneratorExit (not type).Paul Sokolovsky
2014-03-27py: Thin out predefined exceptions.Damien George
2014-03-26Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-03-26Merge branch 'gen-close-ret-val' of github.com:pfalcon/micropython into pfalc...Damien George
2014-03-26py: Add support for user-defined iterators via __iter__, __next__.Damien George