summaryrefslogtreecommitdiff
path: root/extmod/uasyncio/manifest.py
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2023-06-08 15:51:50 +1000
committerDamien George <damien@micropython.org>2023-06-19 17:33:03 +1000
commit2fbc08c462e247e7f78460783c9a07c76c5b762e (patch)
treecfda4eb3b04a6cc281fb0ea668a15b6216353c16 /extmod/uasyncio/manifest.py
parented962f1f233eb74edf2cee83dc488d3cac5e02ee (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/uasyncio/manifest.py')
-rw-r--r--extmod/uasyncio/manifest.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/extmod/uasyncio/manifest.py b/extmod/uasyncio/manifest.py
deleted file mode 100644
index d425a467b..000000000
--- a/extmod/uasyncio/manifest.py
+++ /dev/null
@@ -1,15 +0,0 @@
-# This list of package files doesn't include task.py because that's provided
-# by the C module.
-package(
- "uasyncio",
- (
- "__init__.py",
- "core.py",
- "event.py",
- "funcs.py",
- "lock.py",
- "stream.py",
- ),
- base_path="..",
- opt=3,
-)