summaryrefslogtreecommitdiffstatshomepage
path: root/py/builtinevex.c
Commit message (Expand)AuthorAge
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* py/builtinevex: Add typechecking of globals/locals args to eval/exec.Tom Collins2017-07-21
* py: Change mp_uint_t to size_t for mp_obj_str_get_data len arg.Damien George2017-03-29
* py: Use mp_raise_TypeError/mp_raise_ValueError helpers where possible.Damien George2017-03-28
* py: Allow lexer to raise exceptions during construction.Damien George2017-03-14
* py: Use mp_raise_msg helper function where appropriate.Damien George2016-10-17
* py: Change type signature of builtin funs that take variable or kw args.Damien George2016-01-11
* py: Add MICROPY_ENABLE_COMPILER and MICROPY_PY_BUILTINS_EVAL_EXEC opts.Damien George2015-12-18
* py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George2015-11-29
* py: Check for valid file when creating lexer for execfile.Damien George2015-02-15
* py, unix: Allow to compile with -Wunused-parameter.Damien George2015-01-20
* py: Move to guarded includes, everywhere in py/ core.Damien George2015-01-01
* py: Add execfile function (from Python 2); enable in stmhal port.Damien George2014-12-19
* py: Implement compile builtin, enabled only on unix port.Damien George2014-10-25
* py: Implement proper context save/restore for eval/exec; factor code.Damien George2014-10-05
* py: Make compiler return a proper exception on SyntaxError.Damien George2014-10-05
* py: Free non-interned strings in the parser when not needed.Damien George2014-09-23
* py: Change all uint to mp_uint_t in obj.h.Damien George2014-08-30
* 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
* py: Add traceback info to syntax errors.Damien George2014-04-13
* py: Add option to compiler to specify default code emitter.Damien George2014-04-06
* py: Make globals and locals proper dictionary objects.Damien George2014-04-05
* py: Change nlr_jump to nlr_raise, to aid in debugging.Damien George2014-04-05
* Merge map.h into obj.h.Damien George2014-03-30
* Rename rt_* to mp_*.Damien George2014-03-30
* py: Clean up includes.xbe2014-03-17
* Implement proper exception type hierarchy.Damien George2014-02-15
* Implement full arg handling for exec().Paul Sokolovsky2014-02-13
* Replace global "static" -> "STATIC", to allow "analysis builds". Part 2.Paul Sokolovsky2014-02-12
* Make mp_obj_str_get_data return char* instead of byte*.Damien George2014-02-08
* py: Implement builtin exec.Damien George2014-02-03