From d8e14d6ead895ec7074a816d5ee7a64bfa242b7b Mon Sep 17 00:00:00 2001 From: Mark Mendoza Date: Tue, 28 May 2019 10:48:13 -0700 Subject: [PATCH] [pyre] Adding IntVar to typing_extensions (#3008) --- third_party/2and3/typing_extensions.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/third_party/2and3/typing_extensions.pyi b/third_party/2and3/typing_extensions.pyi index fdc9d874d..c9a2ec435 100644 --- a/third_party/2and3/typing_extensions.pyi +++ b/third_party/2and3/typing_extensions.pyi @@ -24,6 +24,7 @@ Protocol: _SpecialForm = ... Final: _SpecialForm = ... def final(f: _F) -> _F: ... Literal: _SpecialForm = ... +def IntVar(__name: str) -> Type: ... # Internal mypy fallback type for all typed dicts (does not exist at runtime) class _TypedDict(Mapping[str, object], metaclass=abc.ABCMeta):