summaryrefslogtreecommitdiff
path: root/py/runtime.h
AgeCommit message (Expand)Author
2015-06-25py: Remove mp_load_const_bytes and instead load precreated bytes object.Damien George
2015-06-25py: Remove mp_load_const_str and replace uses with inlined version.Damien George
2015-04-16py: Overhaul and simplify printf/pfenv mechanism.Damien George
2015-04-02py: Add finer configuration of static funcs when not in stackless mode.Damien George
2015-04-03vm: Support strict stackless mode, with proper exception reporting.Paul Sokolovsky
2015-04-03runtime: Split mp_call_prepare_args_n_kw_var() from mp_call_method_n_kw_var().Paul Sokolovsky
2015-03-21py: Combine duplicated code that converts members from a lookup.Damien George
2015-02-07py: Put mp_sys_path, mp_sys_argv and gc_collected in mp_state_ctx_t.Damien George
2015-01-27py: Specify unary/binary op name in TypeError error message.Damien George
2015-01-21py: Implement proper re-raising in native codegen's finally handler.Damien George
2015-01-20py, unix, stmhal: Allow to compile with -Wshadow.Damien George
2015-01-07py: Put all global state together in state structures.Damien George
2015-01-01py: Add basic framework for issuing compile/runtime warnings.Paul Sokolovsky
2015-01-01py: Make terse_arg_mismatch a global function and use it elsewhere.Damien George
2014-12-29py: Add include guards to mpconfig,misc,qstr,obj,runtime,parsehelper.Damien George
2014-11-06py: Remove obsolute function declaration.Damien George
2014-10-25py: Add mp_pending_exception global variable, for VM soft interrupt.Damien George
2014-08-30py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h.Damien George
2014-08-24py: Fix bug where GC collected native/viper/asm function data.Damien George
2014-08-16py: Viper can call functions with native types, and raise exceptions.Damien George
2014-08-15py: Viper can now store to global.Damien George
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
2014-06-07py: Add generic mp_not_implemented() func to use instead of assert().Paul Sokolovsky
2014-06-03py: Instead of having "debug on" var, have "optimization level" var.Paul Sokolovsky
2014-05-28py: Implement long int parsing in int(...).Damien George
2014-05-12py: Add support for __debug__ constant.Damien George
2014-05-06Merge branch 'master' of https://github.com/micropython/micropythonDamien George
2014-05-06py: Add keyword arg support to enumerate constructor.Damien George
2014-05-06py: enumerate(): Add NotImplementedError for kwargs.Paul Sokolovsky
2014-05-03Add license header to (almost) all files.Damien George
2014-04-26Simplify names for argcheck.c / arg parsing.Damien George
2014-04-20py: Add arg checking helper functions.Damien George
2014-04-17py: Add MP_OBJ_STOP_ITERATION and make good use of it.Damien George
2014-04-17py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr.Damien George
2014-04-13Merge pull request #476 from pfalcon/static-sysDamien George
2014-04-13py: Remove unique_codes from emitglue.c. Replace with pointers.Damien George
2014-04-13py, unix: Convert sys module to static representation.Paul Sokolovsky
2014-04-08py: Remove obsolete mp_delete_subscr declaration.Damien George
2014-04-08py: Finish implementation of all del opcodes.Damien George
2014-04-08py: implement UNPACK_EX byte code (for: a, *b, c = d)Damien George
2014-04-06py: Implement more features in native emitter.Damien George
2014-04-06py: Revert mp_load_attr() to its previous state (not supporting default val).Paul Sokolovsky
2014-04-05py: Make globals and locals proper dictionary objects.Damien George
2014-04-05Merge pull request #433 from pfalcon/getattr-3argDamien George
2014-04-05py: Implement DELETE_SUBSCR bytecode; implement mp_obj_dict_delete.Damien George
2014-04-05py: Support 3-arg getattr() builtin (with default value).Paul Sokolovsky
2014-03-31py: Implement __getattr__.Damien George
2014-03-31py: Remove old "run time" functions that were 1 liners.Damien George
2014-03-31py: Towards default keyword arguments.Damien George
2014-03-31py: Add LOAD_NULL bytecode and use it to simplify function calls.Damien George