index
:
suspect-devices/circuitpython
1.x
2.x
3.x
4.0.x
4.1.x
4.x
5.0.x
5.1.x
5.3.x
6.0.x
6.1.x
6.2.x
audiocore-rawsample-sinewave
azure
azure-pipelines
cross
dm-mixer
dynamic-native-modules
encoding
esp-extra-scripts
fix_typo_spanish
iabdalkader-cc3k-update
jepler-try-ubuntu-20.04
main
master
parse-bytecode
reentrant-gc
stable
travis-clang
travis-esp8266
travis-stackless
travis-testing
type_hints
CircuitPython - a Python implementation for teaching coding with microcontrollers
feurig
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
py
/
builtinevex.c
Age
Commit message (
Expand
)
Author
2016-01-11
py: Change type signature of builtin funs that take variable or kw args.
Damien George
2015-12-18
py: Add MICROPY_ENABLE_COMPILER and MICROPY_PY_BUILTINS_EVAL_EXEC opts.
Damien George
2015-11-29
py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.
Damien George
2015-02-15
py: Check for valid file when creating lexer for execfile.
Damien George
2015-01-20
py, unix: Allow to compile with -Wunused-parameter.
Damien George
2015-01-01
py: Move to guarded includes, everywhere in py/ core.
Damien George
2014-12-19
py: Add execfile function (from Python 2); enable in stmhal port.
Damien George
2014-10-25
py: Implement compile builtin, enabled only on unix port.
Damien George
2014-10-05
py: Implement proper context save/restore for eval/exec; factor code.
Damien George
2014-10-05
py: Make compiler return a proper exception on SyntaxError.
Damien George
2014-09-23
py: Free non-interned strings in the parser when not needed.
Damien George
2014-08-30
py: Change all uint to mp_uint_t in obj.h.
Damien George
2014-05-03
Add license header to (almost) all files.
Damien George
2014-05-02
py, unix: Make "mpconfig.h" be first included, as other headers depend on it.
Paul Sokolovsky
2014-04-13
py: Add traceback info to syntax errors.
Damien George
2014-04-06
py: Add option to compiler to specify default code emitter.
Damien George
2014-04-05
py: Make globals and locals proper dictionary objects.
Damien George
2014-04-05
py: Change nlr_jump to nlr_raise, to aid in debugging.
Damien George
2014-03-30
Merge map.h into obj.h.
Damien George
2014-03-30
Rename rt_* to mp_*.
Damien George
2014-03-17
py: Clean up includes.
xbe
2014-02-15
Implement proper exception type hierarchy.
Damien George
2014-02-13
Implement full arg handling for exec().
Paul Sokolovsky
2014-02-12
Replace global "static" -> "STATIC", to allow "analysis builds". Part 2.
Paul Sokolovsky
2014-02-08
Make mp_obj_str_get_data return char* instead of byte*.
Damien George
2014-02-03
py: Implement builtin exec.
Damien George