Vladimir Matveev

Results 1 issues of Vladimir Matveev

```python import asyncio async def f1(): await asyncio.sleep(1) async def f2(): return 42 async def main(): # case 1 gfut = asyncio.gather(f1(), f2(), return_exceptions=True) # case 2 #gfut = asyncio.gather(f2(),...

type-bug
expert-asyncio