You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
585 B
33 lines
585 B
try:
|
|
import uasyncio
|
|
except ImportError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
|
|
# Sample of public symbols we expect to see from `asyncio`. Verify they're all
|
|
# available on `uasyncio`.
|
|
expected = [
|
|
"CancelledError",
|
|
"create_task",
|
|
"current_task",
|
|
"Event",
|
|
"gather",
|
|
"get_event_loop",
|
|
"Lock",
|
|
"Loop",
|
|
"open_connection",
|
|
"run",
|
|
"run_until_complete",
|
|
"sleep",
|
|
"sleep_ms",
|
|
"start_server",
|
|
"StreamReader",
|
|
"StreamWriter",
|
|
"Task",
|
|
"ThreadSafeFlag",
|
|
"wait_for",
|
|
]
|
|
|
|
for e in expected:
|
|
getattr(uasyncio, e)
|
|
|