diff --git a/stdlib/3/typing.pyi b/stdlib/3/typing.pyi index bea2450bf..e21528f41 100644 --- a/stdlib/3/typing.pyi +++ b/stdlib/3/typing.pyi @@ -535,6 +535,7 @@ def cast(tp: Type[_T], obj: Any) -> _T: ... # NamedTuple is special-cased in the type checker class NamedTuple(tuple): + _field_types = ... # type: collections.OrderedDict[str, Type[Any]] _fields = ... # type: Tuple[str, ...] _source = ... # type: str