summaryrefslogtreecommitdiffstatshomepage
path: root/py/objexcept.c
Commit message (Expand)AuthorAge
* 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
* | objexcept: Implement explicit __init__ method, useful for subclasses.Paul Sokolovsky2014-05-19
|/
* py: Rename globally-accessible tuple functions, prefix with mp_obj_.Damien George2014-05-11
* Add license header to (almost) all files.Damien George2014-05-03
* py, unix: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky2014-05-02
* objexcept: Support tracebacks for user Exception subclasses.Paul Sokolovsky2014-05-02
* objtype: .print() Exception instances in adhoc way.Paul Sokolovsky2014-05-02
* objexcept: Don't store args tuple within exception object.Paul Sokolovsky2014-04-23
* objexcept: Add mp_obj_new_exception_arg1() convenience function.Paul Sokolovsky2014-04-22
* py: Check explicitly for memory allocation failure in parser.Damien George2014-04-10
* py: Add emergency exception object for when heap allocation fails.Damien George2014-04-10
* py: Change nlr_jump to nlr_raise, to aid in debugging.Damien George2014-04-05
* py: Add m_malloc_fail function to handle memory allocation error.Damien George2014-04-04
* objexcept: No more magic messages in exceptions, only exception arguments.Paul Sokolovsky2014-03-31
* Rename rt_* to mp_*.Damien George2014-03-30
* objexcept: Fix another place missing proper args tuple initialization.Paul Sokolovsky2014-03-30
* py: Change mp_const_* objects to macros.Damien George2014-03-29
* objgenerator: close(): Throw instance of GeneratorExit (not type).Paul Sokolovsky2014-03-28
* py: Thin out predefined exceptions.Damien George2014-03-27
* Merge branch 'master' of github.com:micropython/micropythonDamien George2014-03-26
|\
| * objexcept: Add mp_obj_exception_get_value() convenience function.Paul Sokolovsky2014-03-26
* | Merge branch 'gen-close-ret-val' of github.com:pfalcon/micropython into pfalc...Damien George2014-03-26
|\ \
| * | objgenerator: Implement return with value and .close() method.Paul Sokolovsky2014-03-26
* | | py: Add support for user-defined iterators via __iter__, __next__.Damien George2014-03-26
| |/ |/|
* | py: Removed some unnecessary exception objects.Damien George2014-03-25
* | objexcept: Add "args" exception attribute, as well as StopIteration.value.Paul Sokolovsky2014-03-25
|/
* py: Remove some unnecessary exception objects.Damien George2014-03-22
* Added exception hierarchy except for OSError and UnicodeError (requires argum...Rachel Dowdall2014-03-22
* Added ZeroDivisionError to float division.Rachel Dowdall2014-03-20
* py: Clean up includes.xbe2014-03-17
* py: Fix printing of type name.Damien George2014-03-09
* py: VM never throws an exception, instead returns a status and value.Damien George2014-02-15
* py: Improve exception bases, reduces ROM usage.Damien George2014-02-15
* Implement proper exception type hierarchy.Damien George2014-02-15
* Change mp_obj_type_t.name from const char * to qstr.Damien George2014-02-15
* objexcept: Fix a case of initialized object field.Paul Sokolovsky2014-02-15
* Remove mp_obj_new_exception_msg_1_arg and _2_arg.Damien George2014-02-12