Skip to content

Commit 3b68f36

Browse files
committed
extmod/uasyncio: Add manifest.py for freezing uasyncio Py files.
1 parent c99322f commit 3b68f36

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

extmod/uasyncio/manifest.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# This list of frozen files doesn't include task.py because that's provided by the C module.
2+
freeze(
3+
"..",
4+
(
5+
"uasyncio/__init__.py",
6+
"uasyncio/core.py",
7+
"uasyncio/event.py",
8+
"uasyncio/funcs.py",
9+
"uasyncio/lock.py",
10+
"uasyncio/stream.py",
11+
),
12+
opt=3,
13+
)

0 commit comments

Comments
 (0)