Home | History | Annotate | Download | only in test

Lines Matching refs:asyncio

2046         # asyncio cannot be imported when Python is compiled without thread
2048 asyncio = support.import_module('asyncio')
2058 await asyncio.sleep(0.01)
2063 await asyncio.sleep(0.01)
2068 await asyncio.sleep(0.01)
2072 loop = asyncio.new_event_loop()
2073 asyncio.set_event_loop(loop)
2080 asyncio.set_event_loop(None)
2301 code = ("import asyncio\n"
2303 "asyncio.gather(f())\n")