diff --git a/asyncio/asyncio.py b/asyncio/asyncio.py index 827d9252..caf07949 100644 --- a/asyncio/asyncio.py +++ b/asyncio/asyncio.py @@ -160,6 +160,10 @@ class IOWrite(SysCall): def get_event_loop(): return EpollEventLoop() +def async(coro): + # We don't have Task bloat, so op is null + return coro + def sleep(secs): yield Sleep("sleep", secs)