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
core.py
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
stream.py extmod/uasyncio: Fix syntax of generator functions. 2022-12-14 13:25:24 +11:00
task.py