Remove all mention of 'module' from typeshed. (#1156)

This depends on python/mypy#3107.
This commit is contained in:
Guido van Rossum
2017-04-13 08:40:52 -07:00
committed by Jelle Zijlstra
parent f543ddd89a
commit 359c8cc313
7 changed files with 6 additions and 25 deletions

View File

@@ -9,6 +9,7 @@ from typing import (
overload, Set, FrozenSet, TypeVar, Union, Pattern, Type
)
from abc import abstractmethod, ABCMeta
import types
_T = TypeVar('_T')
_FT = TypeVar('_FT')
@@ -173,4 +174,4 @@ def main(module: str = ..., defaultTest: str = ...,
testLoader: Any = ...) -> None: ... # TODO types
# private but occasionally used
util = ... # type: module
util = ... # type: types.ModuleType