2022-07-15 23:46:28 +10:00
|
|
|
# This list of package files doesn't include task.py because that's provided
|
|
|
|
# by the C module.
|
|
|
|
package(
|
2023-06-08 15:51:50 +10:00
|
|
|
"asyncio",
|
2020-03-21 22:25:45 +11:00
|
|
|
(
|
2022-07-15 23:46:28 +10:00
|
|
|
"__init__.py",
|
|
|
|
"core.py",
|
|
|
|
"event.py",
|
|
|
|
"funcs.py",
|
|
|
|
"lock.py",
|
|
|
|
"stream.py",
|
2020-03-21 22:25:45 +11:00
|
|
|
),
|
2022-07-15 23:46:28 +10:00
|
|
|
base_path="..",
|
2020-03-21 22:25:45 +11:00
|
|
|
opt=3,
|
|
|
|
)
|
2023-06-08 16:42:19 +10:00
|
|
|
|
|
|
|
# Backwards-compatible uasyncio module.
|
|
|
|
module("uasyncio.py", opt=3)
|