Add mypy_extensions. (#611)

This commit is contained in:
David Foster
2016-10-17 16:39:17 -07:00
committed by Guido van Rossum
parent bf319675c4
commit 5c4300a4bd

6
third_party/2and3/mypy_extensions.pyi vendored Normal file
View File

@@ -0,0 +1,6 @@
from typing import Dict, Type, TypeVar
T = TypeVar('T')
def TypedDict(typename: str, fields: Dict[str, Type[T]]) -> Type[dict]: ...