Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-01-22 | extmod/asyncio: Support gather of tasks that finish early. | Damien George | |
Adds support to asyncio.gather() for the case that one or more (or all) sub-tasks finish and/or raise an exception before the gather starts. Signed-off-by: Damien George <damien@micropython.org> | |||
2023-06-19 | extmod/asyncio: Rename uasyncio to asyncio. | Jim Mussared | |
The asyncio module now has much better CPython compatibility and deserves to be just called "asyncio". This will avoid people having to write `from uasyncio import asyncio`. Renames all files, and updates port manifests to use the new path. Also renames the built-in _uasyncio to _asyncio. This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com> |