blob: 612292299c172c41c25f4dba60e0492a696492ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
try:
import uasyncio
import asyncio
except ImportError:
print("SKIP")
raise SystemExit
x = set(dir(uasyncio))
y = set(dir(asyncio)) - set(["event", "lock", "stream", "funcs"])
print(x - y)
print(y - x)
|