typing_extensions: fix positional-only arg (#5359)

Co-authored-by: hauntsaninja <>
This commit is contained in:
Shantanu
2021-05-06 17:07:43 -07:00
committed by GitHub
parent 63696823d7
commit 7619a8fb46

View File

@@ -43,7 +43,7 @@ def final(f: _F) -> _F: ...
Literal: _SpecialForm = ...
def IntVar(__name: str) -> Any: ... # returns a new TypeVar
def IntVar(name: str) -> Any: ... # returns a new TypeVar
# Internal mypy fallback type for all typed dicts (does not exist at runtime)
class _TypedDict(Mapping[str, object], metaclass=abc.ABCMeta):