diff options
author | Damien George <damien@micropython.org> | 2025-09-16 15:13:10 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2025-10-01 11:54:26 +1000 |
commit | 4c9ce826cbfbd99cff10cc933064f87a13bee4ac (patch) | |
tree | a157797c24f45eb982bbc13d11a33853fc684a2c /tests/basics/async_for.py.exp | |
parent | e031ead6b2043c412abb38804c1a1e350237e642 (diff) |
tests: Remove .py.exp files that match with CPython 3.8.2 or newer.
Running the tests now requires CPython 3.8.2 or newer, which was
released February 2020 and should be widely available.
A few examples of features that were previously not supported by CPython,
but which are now:
- %-formatting for bytes and bytearray (PEP 461), CPython 3.5
- annotated variables (PEP 526), CPython 3.6
- assignment expressions (PEP 572), CPython 3.8
Note that `basics/fun_code_full.py.exp` is added here because that requires
CPython 3.10 or newer.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/basics/async_for.py.exp')
-rw-r--r-- | tests/basics/async_for.py.exp | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/tests/basics/async_for.py.exp b/tests/basics/async_for.py.exp deleted file mode 100644 index 6f59979c0..000000000 --- a/tests/basics/async_for.py.exp +++ /dev/null @@ -1,51 +0,0 @@ -== start == -init -aiter -init -anext -a -anext -b -anext -c -anext -== finish == -== start == -init -aiter -init -anext -d -anext -e -anext -f -anext -AsyncIteratorWrapper-def -== finish == -init -== start == -aiter -init -anext -g -anext -h -anext -i -anext -AsyncIteratorWrapper-ghi -== finish == -init -== start == -aiter -init -anext -j -anext -k -anext -l -anext -AsyncIteratorWrapper-jkl -== finish == |