index
:
user/sven/micropython.git
for-upstream
master
old
stmhal-flash
origin/HEAD
origin/dependabot/github_actions/actions/upload-artifact-5
origin/master
origin/parse-bytecode
origin/v1.22-release
origin/v1.24-release
origin/v1.26-release
The MicroPython project
Sven Wegener
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
py
/
compile.c
Age
Commit message (
Expand
)
Author
2021-05-30
py/compile: Raise an error on async with/for outside an async function.
Jeff Epler
2021-04-27
py: Add option to compile without any error messages at all.
Damien George
2020-07-25
py/compile: Don't await __aiter__ special method in async-for.
Jonathan Hogg
2020-06-16
py/compile: Implement PEP 526, syntax for variable annotations.
Damien George
2020-06-16
py/grammar.h: Consolidate duplicate sub-rules for :test and =test.
Damien George
2020-06-16
py/compile: Implement PEP 572, assignment expressions with := operator.
Damien George
2020-06-16
py/compile: Convert scope test to SCOPE_IS_COMP_LIKE macro.
Damien George
2020-05-09
py/parse: Make mp_parse_node_extract_list return size_t instead of int.
Damien George
2020-04-23
all: Format code to add space after C++-style comment start.
stijn
2020-04-05
all: Use MP_ERROR_TEXT for all error messages.
Jim Mussared
2020-04-05
py/objexcept: Allow compression of exception message text.
Jim Mussared
2020-04-05
py: Use preprocessor to detect error reporting level (terse/detailed).
Jim Mussared
2020-02-28
all: Reformat C and Python source code with tools/codeformat.py.
Damien George
2020-02-06
py/compile: Allow 'return' outside function in minimal builds.
Petr Viktorin
2019-11-21
py/compile: Coalesce error message for break/continue outside loop.
Petr Viktorin
2019-10-05
py: Add new Xtensa-Windowed arch for native emitter.
Damien George
2019-10-04
py/compile: Disallow 'import *' outside module level.
Petr Viktorin
2019-09-26
py: Rename MP_QSTR_NULL to MP_QSTRnull to avoid intern collisions.
Josh Lloyd
2019-09-26
py/compile: Use calculation instead of switch to convert token to op.
Damien George
2019-08-30
py: Integrate sys.settrace feature into the VM and runtime.
Milan Rossa
2019-08-30
py/compile: Improve the line numbering precision for lambdas.
Damien George
2019-08-28
py: Add global default_emit_opt variable to make emit kind persistent.
Damien George
2019-08-19
py/compile: Improve the line numbering precision for comprehensions.
Milan Rossa
2019-05-06
py: remove "if (0)" and "if (false)" branches.
Jun Wu
2019-05-01
py/asmthumb: Support asm_thumb code running on normal ARM processors.
Damien George
2019-03-14
py/compile: Check that arch is set when compiling native, viper or asm.
Damien George
2019-03-14
py/compile: Support multiple inline asm emitters.
Damien George
2019-03-14
py/compile: Add support to select the native emitter at runtime.
Damien George
2019-03-08
py: Add support to save native, viper and asm code to .mpy files.
Damien George
2019-03-08
py/emitnative: Consolidate where HASCONSTS is set to load-const-obj fun.
Damien George
2019-03-05
py: Replace POP_BLOCK and POP_EXCEPT opcodes with POP_EXCEPT_JUMP.
Damien George
2019-03-05
py: Fix VM crash with unwinding jump out of a finally block.
Damien George
2019-03-01
py/compile: Add optimisation to compile OrderedDict inplace.
Damien George
2019-02-26
py/compile: Fix handling of unwinding BaseException in async with.
Damien George
2019-02-25
py: Eliminate warnings about unused arguments when debugging disabled.
Damien George
2019-02-12
py: Downcase all MP_OBJ_IS_xxx macros to make a more consistent C API.
Damien George
2019-01-27
py/compile: Swap order of pop_block/pop_except in "except as" handler.
Damien George
2018-10-28
py/scope: Optimise scope_find_or_add_id to not need "added" arg.
Damien George
2018-10-28
py/compile: Remove unneeded variable from global/nonlocal stmt helpers.
Damien George
2018-10-28
py/compile: Fix case of eager implicit conversion of local to nonlocal.
Damien George
2018-10-01
py/emitnative: Implement yield and yield-from in native emitter.
Damien George
2018-09-27
py/emitnative: Place const objs for native code in separate const table.
Damien George
2018-09-20
py: Shorten error messages by using contractions and some rewording.
Damien George
2018-09-15
py/emitnative: Make viper funcs run with their correct globals context.
Damien George
2018-09-15
py: Make viper functions have the same entry signature as native.
Damien George
2018-09-15
py/compile: Factor code that compiles viper type annotations.
Damien George
2018-09-15
py/compile: Merge viper annotation and normal param compilation stages.
Damien George
2018-09-15
py/emit: Completely remove set_native_type, arg type is set in compiler.
Damien George
2018-09-15
py/emit: Remove need to call set_native_type to set viper return type.
Damien George
2018-09-15
py/emit: Remove need to call set_native_type to set native/viper mode.
Damien George
[next]