Environment data
- Pylance version: 2026.2.1
- OS and version: win10
- Python version: 3.13.11
Code Snippet
import asyncio
asyncio.get_running_loop().create_pipe_connection
Repro Steps
Expected behavior
the language server lists out all possible candidates for autocomplete in pop-up
Actual behavior
the asyncio.get_running_loop().create_pipe_connection exists, but pylance doesn't show it up.
it only showed inrrelative results.
Additional
Another issue: when follow definition of the asyncio.get_running_loop().connect_read_pipe, it jumped into the AbstractEventLoop.connect_read_pipe rather than the real BaseEventLoop.connect_read_pipe. This issue has existed for long time.
It seems pylance doesn't work really well for the asyncio standard library for some time.
Environment data
Code Snippet
Repro Steps
Expected behavior
the language server lists out all possible candidates for autocomplete in pop-up
Actual behavior
the
asyncio.get_running_loop().create_pipe_connectionexists, but pylance doesn't show it up.it only showed inrrelative results.
Additional
Another issue: when follow definition of the
asyncio.get_running_loop().connect_read_pipe, it jumped into theAbstractEventLoop.connect_read_piperather than the realBaseEventLoop.connect_read_pipe. This issue has existed for long time.It seems pylance doesn't work really well for the
asynciostandard library for some time.