Kyle Into
Kyle Into
Pyright errors in the following module: ``` __all__ = ["test"] # E: "test" is specified in __all__ but is not present in module (reportUnsupportedDunderAll) ``` but not if you add...
### Describe the Bug notebook support in vscode ### Sandbox Link _No response_ ### (Only applicable for extension issues) IDE Information _No response_
### Describe the Bug completions on in: ``` from import ``` ### Sandbox Link _No response_ ### (Only applicable for extension issues) IDE Information _No response_
Summary: - on invalidate find, we only set a file to dirty if our dependencies changed - we currently only trace `deps`, the dependencies that can be resolved we also...
Summary: The test_notebook_publish_diagnostics test was flaky due to a race condition during LSP initialization. When a client responded to the WorkspaceConfiguration request during initialization, workspace_configuration_response() would trigger invalidate_config_and_validate_in_memory(), which always...
### Describe the Bug see [here](https://github.com/facebook/pyrefly/discussions/1668#discussioncomment-15090565) ### Sandbox Link _No response_ ### (Only applicable for extension issues) IDE Information _No response_
### Describe the Bug currently, we can find-references on constructor calls. but hovering / clicking a constructor goes to / displays the type definition, not the constructor function. see [D87102818](https://www.internalfb.com/diff/D87102818)...
### Describe the Bug see sandbox link: - hovering self. in __init__ shows nothing - hovering = shows the type in __init__ - hovering self. in test shows the type...
Summary: When switching Python interpreters via workspace/didChangeConfiguration, the LSP would sometimes show stale diagnostics because of a race condition in how config invalidation and diagnostic publishing interacted. The issue was...
### Describe the Bug We can find references in our own code. but what about references in our own code of site-package methods? example: I want to find all references...