summaryrefslogtreecommitdiff
path: root/py/runtime.h
AgeCommit message (Expand)Author
2020-07-06Add license to some obvious files.Diego Elio Pettenò
2020-02-04preserve errno in OSErrorDan Halbert
2020-02-04Include filename for 'No such file/directory', etc.Dan Halbert
2020-01-17Refine iMX RT memory layout and add three boardsScott Shawcroft
2019-05-09Use OverflowError exception type for overflowsMatt Wozniski
2019-05-08Make status light flash blue for incompatible mpy (fixes #1369)Terri Oda
2019-04-09Fix boards with no shared busses.Scott Shawcroft
2019-01-14py changes for supporting superclass constructors that take kwargsScott Shawcroft
2018-12-27wip: advertising works, but not connectionDan Halbert
2018-11-20More UUID work; use mp_raise for exceptionsDan Halbert
2018-08-16Compress all translated strings with Huffman coding.Scott Shawcroft
2018-07-13compiles and runs; hangs on import storage;storage.VfsFat.<tab>Dan Halbert
2018-07-11WIP: after merge; before testingDan Halbert
2018-05-10py/runtime: Add mp_load_method_protected helper which catches exceptionsDamien George
2017-12-11py: Introduce a Python stack for scoped allocation.Damien George
2017-12-11py/runtime: Move mp_exc_recursion_depth to runtime and rename to raise.Damien George
2017-12-05py: mp_call_function_*_protected(): Pass-thru return value if possible.Paul Sokolovsky
2017-11-02Merge tag 'v1.9.3'Scott Shawcroft
2017-10-24Merge commit 'f869d6b2e339c04469c6c9ea3fb2fabd7bbb2d8c' into nrf2_mergeScott Shawcroft
2017-10-21py/objtype: Fit qstrs for special methods in byte type.Paul Sokolovsky
2017-10-04all: Remove inclusion of internal py header files.Damien George
2017-10-04py/objtype: Change type of enum-to-qstr table to uint16_t to save space.Damien George
2017-09-13py/runtime.h: Change empty mp_warning macro so var-args are non empty.Damien George
2017-08-29all: Convert mp_uint_t to mp_unary_op_t/mp_binary_op_t where appropriateDamien George
2017-08-25Initial merge of micropython v1.9.2 into circuitpython 2.0.0 (in development)...Dan Halbert
2017-08-13all: Raise exceptions via mp_raise_XXXJavier Candeira
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-07-18all: Unify header guard usage.Alexander Steffen
2017-06-20Merge tag 'v1.9.1'2.0.0-alpha.0Scott Shawcroft
2017-04-22py: Add LOAD_SUPER_METHOD bytecode to allow heap-free super meth calls.Damien George
2017-03-24py: Remove MP_STATE_CTX, use MP_STATE_THREAD instead (it's an alias).Damien George
2017-03-20py: Add micropython.schedule() function and associated runtime code.Damien George
2017-02-24Correct name of mp_raise_NotImplementedError to make error name.Scott Shawcroft
2017-02-24Switch exception throwing to mp_raise helpers. It saves a little code space e...Scott Shawcroft
2017-02-16py: Add iter_buf to getiter type method.Damien George
2017-02-16py/runtime: Convert mp_uint_t to size_t where appropriate.Damien George
2016-11-22py/objtype: Implement __call__ handling for an instance w/o heap alloc.Paul Sokolovsky
2016-10-07py: Add mp_raise_OSError(errno) helper function.Damien George
2016-09-23py: Shrink mp_arg_t struct by using reduced-size integer members.Damien George
2016-08-14py/runtime.h: Move comment about mp_not_implemented to correct place.Damien George
2016-08-12py/runtime.h: Define mp_check_self(pred) helper macro.Paul Sokolovsky
2016-08-12py/runtime: Factor out exception raising helpers.Paul Sokolovsky
2016-04-25py: Move call_function_*_protected() functions to py/ for reuse.Paul Sokolovsky
2016-03-14py/argcheck: Use size_t instead of mp_uint_t to count number of args.Damien George
2015-11-29py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George
2015-11-29py: Add MP_ROM_* macros and mp_rom_* types and use them.Damien George
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