aboutsummaryrefslogtreecommitdiff
path: root/py/builtinevex.c
AgeCommit message (Expand)Author
2022-05-03all: Use mp_obj_malloc everywhere it's applicable.Jim Mussared
2022-02-24py: Rework bytecode and .mpy file format to be mostly static data.Damien George
2020-04-05all: Use MP_ERROR_TEXT for all error messages.Jim Mussared
2020-02-28py/builtinevex: Support passing in a bytearray/buffer to eval/exec.Damien George
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.Damien George
2019-02-12py: Downcase all MP_OBJ_IS_xxx macros to make a more consistent C API.Damien George
2017-10-04all: Remove inclusion of internal py header files.Damien George
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-07-21py/builtinevex: Add typechecking of globals/locals args to eval/exec.Tom Collins
2017-03-29py: Change mp_uint_t to size_t for mp_obj_str_get_data len arg.Damien George
2017-03-28py: Use mp_raise_TypeError/mp_raise_ValueError helpers where possible.Damien George
2017-03-14py: Allow lexer to raise exceptions during construction.Damien George
2016-10-17py: Use mp_raise_msg helper function where appropriate.Damien George
2016-01-11py: Change type signature of builtin funs that take variable or kw args.Damien George
2015-12-18py: Add MICROPY_ENABLE_COMPILER and MICROPY_PY_BUILTINS_EVAL_EXEC opts.Damien George
2015-11-29py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George
2015-02-15py: Check for valid file when creating lexer for execfile.Damien George
2015-01-20py, unix: Allow to compile with -Wunused-parameter.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-12-19py: Add execfile function (from Python 2); enable in stmhal port.Damien George
2014-10-25py: Implement compile builtin, enabled only on unix port.Damien George
2014-10-05py: Implement proper context save/restore for eval/exec; factor code.Damien George
2014-10-05py: Make compiler return a proper exception on SyntaxError.Damien George
2014-09-23py: Free non-interned strings in the parser when not needed.Damien George
2014-08-30py: Change all uint to mp_uint_t in obj.h.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-04-13py: Add traceback info to syntax errors.Damien George
2014-04-06py: Add option to compiler to specify default code emitter.Damien George
2014-04-05py: Make globals and locals proper dictionary objects.Damien George
2014-04-05py: Change nlr_jump to nlr_raise, to aid in debugging.Damien George
2014-03-30Merge map.h into obj.h.Damien George
2014-03-30Rename rt_* to mp_*.Damien George
2014-03-17py: Clean up includes.xbe
2014-02-15Implement proper exception type hierarchy.Damien George
2014-02-13Implement full arg handling for exec().Paul Sokolovsky
2014-02-12Replace global "static" -> "STATIC", to allow "analysis builds". Part 2.Paul Sokolovsky
2014-02-08Make mp_obj_str_get_data return char* instead of byte*.Damien George
2014-02-03py: Implement builtin exec.Damien George