Vladimir Matveev
Results
1
issues of
Vladimir Matveev
Occasional incorrect chaining of CancelledError when calling 'cancel' on result of 'asyncio.gather'
4
```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