From c1e554af68088733b17c8b28e4aab106818ef48b Mon Sep 17 00:00:00 2001 From: Matthias Kramm Date: Mon, 12 Oct 2015 14:30:17 -0700 Subject: [PATCH] fix syntax of types.pyi --- stdlib/3/types.pyi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stdlib/3/types.pyi b/stdlib/3/types.pyi index 293ae2cba..4b84c1a68 100644 --- a/stdlib/3/types.pyi +++ b/stdlib/3/types.pyi @@ -2,7 +2,7 @@ # TODO this is work in progress -from typing import Any, Callable, Dict, Sequence +from typing import Any, Callable, Dict, Sequence, Optional, Tuple class ModuleType: __name__ = ... # type: str @@ -23,7 +23,7 @@ class CodeType: co_consts = ... # type: Tuple[Any] co_names = ... # type: Tuple[str] co_varnames = ... # type: Tuple[str] - co_filename = # type: Optional[str] + co_filename = ... # type: Optional[str] co_name = ... # type: str co_firstlineno = ... # type: int co_lnotab = ... # type: bytes