Finish implementation of the types module

Note that many classes will need special handling in the typing module.
This commit is contained in:
Ben Longbons
2015-10-26 17:35:14 -07:00
parent 33036f1b3b
commit c0aea8e8aa
3 changed files with 237 additions and 26 deletions

View File

@@ -806,3 +806,5 @@ def eval(s: str) -> Any: ...
def cmp(x: Any, y: Any) -> int: ...
def execfile(filename: str, globals: Dict[str, Any] = None, locals: Dict[str, Any] = None) -> None: ...
class file(BinaryIO): ...