summaryrefslogtreecommitdiff
path: root/py/objexcept.c
AgeCommit message (Expand)Author
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
2014-03-26objexcept: Add mp_obj_exception_get_value() convenience function.Paul Sokolovsky
2014-03-26objgenerator: Implement return with value and .close() method.Paul Sokolovsky
2014-03-25py: Removed some unnecessary exception objects.Damien George
2014-03-25objexcept: Add "args" exception attribute, as well as StopIteration.value.Paul Sokolovsky
2014-03-22py: Remove some unnecessary exception objects.Damien George
2014-03-22Added exception hierarchy except for OSError and UnicodeError (requires argum...Rachel Dowdall
2014-03-20Added ZeroDivisionError to float division.Rachel Dowdall
2014-03-17py: Clean up includes.xbe
2014-03-09py: Fix printing of type name.Damien George
2014-02-15py: VM never throws an exception, instead returns a status and value.Damien George
2014-02-15py: Improve exception bases, reduces ROM usage.Damien George
2014-02-15Implement proper exception type hierarchy.Damien George
2014-02-15Change mp_obj_type_t.name from const char * to qstr.Damien George
2014-02-15objexcept: Fix a case of initialized object field.Paul Sokolovsky
2014-02-12Remove mp_obj_new_exception_msg_1_arg and _2_arg.Damien George
2014-02-12Replace global "static" -> "STATIC", to allow "analysis builds". Part 1.Paul Sokolovsky
2014-01-31Typo fixes in comments.Paul Sokolovsky
2014-01-29py: Msg in exception is no longer interned.Damien George
2014-01-21Revamp qstrs: they now include length and hash.Damien George
2014-01-19py: Add full traceback to exception printing.Damien George
2014-01-19py: Add module/function/class name to exceptions.Damien George
2014-01-18Add source file name and line number to error messages.Damien George
2014-01-18Make VM stack grow upwards, and so no reversed args arrays.Damien George
2014-01-15type->print(): Distinguish str() and repr() variety by passing extra param.Paul Sokolovsky