micropython/extmod/uasyncio
Damien Tournoud 0eba00a92c extmod/uasyncio: Fix syntax of generator functions.
The compiler is not picky right now, but these are actually all syntax
errors:
- await is only valid in an async function
- async functions that use yield are actually async generators (a construct
  not supported by the compiler right now)
2022-12-14 13:25:24 +11:00
..
__init__.py extmod/uasyncio: Add ThreadSafeFlag. 2021-02-16 16:35:37 +11:00
core.py extmod/uasyncio: Rename and merge TaskQueue push/pop methods. 2022-04-22 16:37:02 +10:00
event.py extmod/uasyncio: Fix syntax of generator functions. 2022-12-14 13:25:24 +11:00
funcs.py extmod/uasyncio: Fix syntax of generator functions. 2022-12-14 13:25:24 +11:00
lock.py extmod/uasyncio: Fix syntax of generator functions. 2022-12-14 13:25:24 +11:00
manifest.py all: Update all manifest.py files to use new features. 2022-09-05 18:43:18 +10:00
stream.py extmod/uasyncio: Fix syntax of generator functions. 2022-12-14 13:25:24 +11:00
task.py extmod/uasyncio: Rename and merge TaskQueue push/pop methods. 2022-04-22 16:37:02 +10:00