diff --git a/asyncio/asyncio.py b/asyncio/asyncio.py index 2c7a5e90..ccc5f3ab 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)