summaryrefslogtreecommitdiffstatshomepage
path: root/py/runtime.h
Commit message (Expand)AuthorAge
* all: Raise exceptions via mp_raise_XXXJavier Candeira2017-08-13
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* all: Unify header guard usage.Alexander Steffen2017-07-18
* py: Add LOAD_SUPER_METHOD bytecode to allow heap-free super meth calls.Damien George2017-04-22
* py: Remove MP_STATE_CTX, use MP_STATE_THREAD instead (it's an alias).Damien George2017-03-24
* py: Add micropython.schedule() function and associated runtime code.Damien George2017-03-20
* py: Add iter_buf to getiter type method.Damien George2017-02-16
* py/runtime: Convert mp_uint_t to size_t where appropriate.Damien George2017-02-16
* py/objtype: Implement __call__ handling for an instance w/o heap alloc.Paul Sokolovsky2016-11-22
* py: Add mp_raise_OSError(errno) helper function.Damien George2016-10-07
* py: Shrink mp_arg_t struct by using reduced-size integer members.Damien George2016-09-23
* py/runtime.h: Move comment about mp_not_implemented to correct place.Damien George2016-08-14
* py/runtime.h: Define mp_check_self(pred) helper macro.Paul Sokolovsky2016-08-12
* py/runtime: Factor out exception raising helpers.Paul Sokolovsky2016-08-12
* py: Move call_function_*_protected() functions to py/ for reuse.Paul Sokolovsky2016-04-25
* py/argcheck: Use size_t instead of mp_uint_t to count number of args.Damien George2016-03-14
* 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: Remove mp_load_const_bytes and instead load precreated bytes object.Damien George2015-06-25
* py: Remove mp_load_const_str and replace uses with inlined version.Damien George2015-06-25
* py: Overhaul and simplify printf/pfenv mechanism.Damien George2015-04-16
* py: Add finer configuration of static funcs when not in stackless mode.Damien George2015-04-02
* vm: Support strict stackless mode, with proper exception reporting.Paul Sokolovsky2015-04-03
* runtime: Split mp_call_prepare_args_n_kw_var() from mp_call_method_n_kw_var().Paul Sokolovsky2015-04-03
* py: Combine duplicated code that converts members from a lookup.Damien George2015-03-21
* py: Put mp_sys_path, mp_sys_argv and gc_collected in mp_state_ctx_t.Damien George2015-02-07
* py: Specify unary/binary op name in TypeError error message.Damien George2015-01-27
* py: Implement proper re-raising in native codegen's finally handler.Damien George2015-01-21
* py, unix, stmhal: Allow to compile with -Wshadow.Damien George2015-01-20
* py: Put all global state together in state structures.Damien George2015-01-07
* py: Add basic framework for issuing compile/runtime warnings.Paul Sokolovsky2015-01-01
* py: Make terse_arg_mismatch a global function and use it elsewhere.Damien George2015-01-01
* py: Add include guards to mpconfig,misc,qstr,obj,runtime,parsehelper.Damien George2014-12-29
* py: Remove obsolute function declaration.Damien George2014-11-06
* py: Add mp_pending_exception global variable, for VM soft interrupt.Damien George2014-10-25
* py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h.Damien George2014-08-30
* py: Fix bug where GC collected native/viper/asm function data.Damien George2014-08-24
* py: Viper can call functions with native types, and raise exceptions.Damien George2014-08-16
* py: Viper can now store to global.Damien George2014-08-15
* Rename machine_(u)int_t to mp_(u)int_t.Damien George2014-07-03
* py: Add generic mp_not_implemented() func to use instead of assert().Paul Sokolovsky2014-06-07
* py: Instead of having "debug on" var, have "optimization level" var.Paul Sokolovsky2014-06-03
* py: Implement long int parsing in int(...).Damien George2014-05-28
* py: Add support for __debug__ constant.Damien George2014-05-12
* Merge branch 'master' of https://github.com/micropython/micropythonDamien George2014-05-06
|\
| * py: enumerate(): Add NotImplementedError for kwargs.Paul Sokolovsky2014-05-06
* | py: Add keyword arg support to enumerate constructor.Damien George2014-05-06
|/
* Add license header to (almost) all files.Damien George2014-05-03
* Simplify names for argcheck.c / arg parsing.Damien George2014-04-26
* py: Add arg checking helper functions.Damien George2014-04-20