aboutsummaryrefslogtreecommitdiff
path: root/extmod/uasyncio
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2020-03-21 22:25:45 +1100
committerDamien George <damien.p.george@gmail.com>2020-03-26 01:25:45 +1100
commit3b68f3617565f8f4d05ac23d7be7f094e628bcbf (patch)
treeaceb3dc4b5f6f4ac21c822e3717c40dcabbd6c7c /extmod/uasyncio
parentc99322f8d8ec6c288dd734e5f5fb344670215692 (diff)
extmod/uasyncio: Add manifest.py for freezing uasyncio Py files.
Diffstat (limited to 'extmod/uasyncio')
-rw-r--r--extmod/uasyncio/manifest.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/extmod/uasyncio/manifest.py b/extmod/uasyncio/manifest.py
new file mode 100644
index 000000000..f5fa27bfc
--- /dev/null
+++ b/extmod/uasyncio/manifest.py
@@ -0,0 +1,13 @@
+# This list of frozen files doesn't include task.py because that's provided by the C module.
+freeze(
+ "..",
+ (
+ "uasyncio/__init__.py",
+ "uasyncio/core.py",
+ "uasyncio/event.py",
+ "uasyncio/funcs.py",
+ "uasyncio/lock.py",
+ "uasyncio/stream.py",
+ ),
+ opt=3,
+)