Lines Matching defs:asyncio
24 import asyncio
177 p = await asyncio.create_subprocess_exec(
179 stdout=asyncio.subprocess.PIPE)
189 p = await asyncio.create_subprocess_exec(
191 stdout=asyncio.subprocess.PIPE)
213 loop = asyncio.get_event_loop()
215 results = await asyncio.gather(*[get_bug(session, i) for i in issues])
235 p = await asyncio.create_subprocess_exec('git', 'shortlog', f'mesa-{version}..',
236 stdout=asyncio.subprocess.PIPE)
311 shortlog, bugs = await asyncio.gather(
341 loop = asyncio.get_event_loop()