Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
async def test():
context = aiomisc.get_context()
context['foo'] = True
await asyncio.sleep(0.1)
results.append(await context['foo'])
context['foo'] = False
await asyncio.sleep(0.1)
results.append(await context['foo'])
context['foo'] = None
await asyncio.sleep(0.1)
results.append(await context['foo'])
async def start(self):
context = aiomisc.get_context()
await asyncio.sleep(0.1)
await context['test']
Awaiter.result = await context['test']
async def start(self):
context = aiomisc.get_context()
await asyncio.sleep(0.1)
context['test'] = True