[pyre] Adding IntVar to typing_extensions (#3008)

This commit is contained in:
Mark Mendoza
2019-05-28 10:48:13 -07:00
committed by Sebastian Rittau
parent 020449a1ed
commit d8e14d6ead

View File

@@ -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):