DetachHead / basedpyright

pyright fork with various type checking improvements, improved vscode support and pylance features built into the language server
http://docs.basedpyright.com/
Other
601 stars 12 forks source link

docstrings on hover for some stdlib types doesn't work #431

Open DetachHead opened 2 weeks ago

DetachHead commented 2 weeks ago

image

from typing import TypeVar, Self

T = TypeVar("T")
class Foo:
    def foo(self) ->Self:
        ...

interestingly it works when you hover over the one on the import: image

seems to be an upstream issue (and also intermittent?)