diff options
| author | Jim Mussared <jim.mussared@gmail.com> | 2023-06-08 15:51:50 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2023-06-19 17:33:03 +1000 |
| commit | 2fbc08c462e247e7f78460783c9a07c76c5b762e (patch) | |
| tree | cfda4eb3b04a6cc281fb0ea668a15b6216353c16 /extmod/extmod.cmake | |
| parent | ed962f1f233eb74edf2cee83dc488d3cac5e02ee (diff) | |
extmod/asyncio: Rename uasyncio to asyncio.
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>
Diffstat (limited to 'extmod/extmod.cmake')
| -rw-r--r-- | extmod/extmod.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/extmod.cmake b/extmod/extmod.cmake index 59f07b8ae..67f33cf91 100644 --- a/extmod/extmod.cmake +++ b/extmod/extmod.cmake @@ -19,7 +19,7 @@ set(MICROPY_SOURCE_EXTMOD ${MICROPY_EXTMOD_DIR}/modlwip.c ${MICROPY_EXTMOD_DIR}/modnetwork.c ${MICROPY_EXTMOD_DIR}/modonewire.c - ${MICROPY_EXTMOD_DIR}/moduasyncio.c + ${MICROPY_EXTMOD_DIR}/modasyncio.c ${MICROPY_EXTMOD_DIR}/modbinascii.c ${MICROPY_EXTMOD_DIR}/modcryptolib.c ${MICROPY_EXTMOD_DIR}/moductypes.c |
