dphoyes
dphoyes
Consider this program: ``` import trio import contextlib async def background(): assert False async def main(): async with contextlib.AsyncExitStack() as stack: n = await stack.enter_async_context(trio.open_nursery()) n.start_soon(background) await trio.sleep_forever() trio.run(main) ```...
Consider this snippet: ``` import asyncio import mpd.asyncio async def main(): client = mpd.asyncio.MPDClient() await client.connect("192.168.0.2", 6600) for _ in range(2): print("Status:") print((await client.status())["state"]) await asyncio.sleep(0.1) asyncio.run(main()) ``` Running this...
### Describe the bug For a project that specifies a variant_dir for building into and uses autogenerated .cpp files, the "file" field of the compilation database entry should point to...
### Describe the bug If -Y is used to point to a repository directory, then for any .cpp files in that directory the "file" field of the compilation database entry...