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
/
compile.c
Age
Commit message (
Expand
)
Author
2020-10-11
remove unnecessary board configuration and address feedback
Kenny
2020-10-10
update async tests with less upython workaround and more cpython compatibility
Kenny
2020-10-10
i do not know if this is needed but this is not the vm i use anymore
Kenny
2020-10-10
async def syntax rigor and __await__ magic method
Kenny
2020-07-29
Merge pull request #3222 from WarriorOfWire/pick_micropython
Scott Shawcroft
2020-07-24
py/compile: Don't await __aiter__ special method in async-for.
Jonathan Hogg
2020-07-24
require async for and async with to actually be in an async def method instea...
Kenny
2020-07-23
add coroutine behavior for generators
Kenny
2020-07-06
Add license to some obvious files.
Diego Elio Pettenò
2020-03-01
compile: Give a proper error on 'async with'/'async for' outside 'async def'
Jeff Epler
2019-11-26
Make the @micropython.native decorator no-op if support isn't enabled
Thea Flowers
2019-11-05
Allow boards to enable the `micropython.native` decorator
Thea Flowers
2018-08-16
Compress all translated strings with Huffman coding.
Scott Shawcroft
2018-08-09
Two fixes and translate more strings.
Scott Shawcroft
2018-06-22
py/compile: Combine expr, xor_expr and and_expr into one function.
Damien George
2018-06-22
py/compile: Combine or_test and and_test compile functions.
Damien George
2018-06-22
py/compile: Combine global and nonlocal statement compile functions.
Damien George
2018-06-22
py/compile: Combine subscript_2 and subscript_3 into one function.
Damien George
2018-06-22
py/compile: Combine break and continue compile functions.
Damien George
2018-05-23
py/emit: Combine setup with/except/finally into one emit function.
Damien George
2018-05-23
py/emit: Merge build set/slice into existing build emit function.
Damien George
2018-05-23
py/emit: Combine import from/name/star into one emit function.
Damien George
2018-05-23
py/emit: Combine break_loop and continue_loop into one emit function.
Damien George
2018-05-23
py/emit: Combine load/store/delete attr into one emit function.
Damien George
2018-05-23
py/emit: Combine load/store/delete subscr into one emit function.
Damien George
2018-05-23
py/emit: Combine name and global into one func for load/store/delete.
Damien George
2018-05-23
py/emit: Combine build tuple/list/map emit funcs into one.
Damien George
2018-05-23
py/emit: Combine yield value and yield-from emit funcs into one.
Damien George
2018-05-23
py/emit: Combine fast and deref into one function for load/store/delete.
Damien George
2018-05-18
py/compile: Change comment about ITER_BUF_NSLOTS to a static assertion.
Damien George
2018-02-24
py/compile: Adjust c_assign_atom_expr() to use return instead of goto.
Damien George
2018-02-04
py/compile: Combine compiler-opt of 2 and 3 tuple-to-tuple assignment.
Damien George
2017-12-11
py: Convert all uses of alloca() to use new scoped allocation API.
Damien George
2017-11-01
py/compile: Use alloca instead of qstr_build when compiling import name.
Damien George
2017-08-21
py/compile: Remove unused pn_colon code when compiling func params.
Damien George
2017-07-31
all: Use the name MicroPython consistently in comments
Alexander Steffen
2017-07-09
py/compile: Fix enum variable declaration.
Damien George
2017-07-05
py/compile: Use switch-case to match token and operator.
Krzysztof Blazewicz
2017-07-05
py/compile: Combine arith and bit-shift ops into 1 compile routine.
Krzysztof Blazewicz
2017-06-22
py/compile: Optimise emitter label indices to save a word of heap.
Damien George
2017-06-22
py/compile: Fix bug with break/continue in else of optimised for-range.
Damien George
2017-06-14
py/compile: Raise SyntaxError if positional args are given after */**.
Damien George
2017-05-29
various: Spelling fixes
Ville Skyttä
2017-04-22
py: Add LOAD_SUPER_METHOD bytecode to allow heap-free super meth calls.
Damien George
2017-04-22
py/compile: Refactor handling of special super() call.
Damien George
2017-04-22
py/compile: Don't do unnecessary check if iter parse node is a struct.
Damien George
2017-04-22
py/compile: Add COMP_RETURN_IF_EXPR option to enable return-if-else opt.
Damien George
2017-04-22
py/compile: Extract parse-node kind at start of func for efficiency.
Damien George
2017-04-22
py/compile: Don't do unnecessary check if parse node is a struct.
Damien George
2017-04-05
py: Raise a ValueError if range() step is zero.
Damien George
[next]