Eric Traut
Eric Traut
This is related to https://github.com/microsoft/pyright/issues/8272. I'm creating issues for each hang so I can track them separately. This particular issue specifically affects the `lobpcg` function in module `scipy/sparse/linalg/_eigen/lobpcg/lobpcg.py`. To repro:...
This issue is related to #6207 but involves a change in the argument order. ```python from typing import Callable def func8[T](a: T, b: Callable[[list[T]], None]) -> T: return a def...
…these types are used in a member access expression (i.e. the LHS of a "dot" operator).
With the latest changes in "main", I noticed that the `diagnosticMode` setting is no longer defaulting to "openFilesOnly". The Pyright VS Code extension is now analyzing all of the files...
…he need to track separate constraints for dest and src.
…he need to track separate constraints for dest and src.
Incorrect handling of class that is a subtype of multiple constraints in a value-constrained TypeVar
The following should type check without errors: ```python from typing import TypeVar, reveal_type class A: ... class B: ... class C(A, B): ... T = TypeVar("T", A, B) def test(a:...
… such as `str` and `bytes` that do not directly derive from `Sequence`, `MutableSequence`, etc. at runtime. DO NOT COMMIT! This is just an experiment.