constructors: Fix defaulted TypeVars (#7965)

From the list in https://github.com/microsoft/pyright/issues/3501
This commit is contained in:
Jelle Zijlstra
2022-05-26 23:32:56 -07:00
committed by GitHub
parent 62a8a6922c
commit 789c12ad90
5 changed files with 23 additions and 8 deletions

View File

@@ -14,7 +14,10 @@ _P = ParamSpec("_P")
@final
class ContextVar(Generic[_T]):
def __init__(self, name: str, *, default: _T = ...) -> None: ...
@overload
def __init__(self, name: str) -> None: ...
@overload
def __init__(self, name: str, *, default: _T) -> None: ...
@property
def name(self) -> str: ...
@overload