Lines Matching defs:asyncio
1 import asyncio
11 from asyncio import run, iscoroutinefunction
18 asyncio.set_event_loop_policy(None)
195 loop = asyncio.new_event_loop()
200 self.assertIsInstance(mock, asyncio.Future)
239 self.assertTrue(asyncio.iscoroutine(awaitable))
260 self.assertTrue(asyncio.iscoroutine(awaitable))
476 fut = asyncio.Future()
480 self.assertIsInstance(result, asyncio.Future)
483 fut = asyncio.Future()
488 self.assertIsInstance(result, asyncio.Future)
501 value = asyncio.Future()