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>
16 lines
288 B
Python
16 lines
288 B
Python
# This list of package files doesn't include task.py because that's provided
|
|
# by the C module.
|
|
package(
|
|
"asyncio",
|
|
(
|
|
"__init__.py",
|
|
"core.py",
|
|
"event.py",
|
|
"funcs.py",
|
|
"lock.py",
|
|
"stream.py",
|
|
),
|
|
base_path="..",
|
|
opt=3,
|
|
)
|