valgarf

Results 3 issues of valgarf

Example reproducing the issue: ```python import anyio import sys async def raise_runtime(): try: await anyio.sleep(999) except anyio.get_cancelled_exc_class(): raise RuntimeError() async def exc_group(): with anyio.move_on_after(1): try: async with anyio.create_task_group() as tg:...

bug

This PR replaces almost all asyncio usage with anyio, making graphql-core run with asyncio and trio. This is only a proposal. It is implemented completely and tests run with asyncio...

Yesterday I added the pull request #165 to start a discussion on supporting the trio ecosystem, preferably using anyio. @Cito invited me to create an issue as a place for...

help wanted
discussion
investigate