See https://github.com/python/typeshed/pull/1336#discussion_r118749396 Not very important, but would be nice if stubs could use ```python class A(NamedTuple): x: int y: str ``` instead if ```python A = NamedTuple('A', [('x', int), ('y', str)]) ```