Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-06-19 | extmod/asyncio/uasyncio.py: Add backwards-compatible uasyncio alias. | Jim Mussared | |
This allows existing code that does `import uasyncio` or `import uasyncio as asyncio` to continue working. It uses the same lazy-loading as asyncio to prevent loading of unused features. This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com> | |||
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> |