Fix stubs that assumed reexport without as

This commit is contained in:
Ben Longbons
2015-10-16 14:48:27 -07:00
parent 2f49dfa1f5
commit c2f892a409
19 changed files with 59 additions and 27 deletions

View File

@@ -1,6 +1,6 @@
"""Stub file for the '_codecs' module."""
from typing import Any, AnyStr, Callable, Tuple, Optional
from typing import Any, AnyStr, Callable, Tuple, Optional, Dict
import codecs

View File

@@ -1,4 +1,4 @@
from typing import Any
from typing import Any, List
_defaultaction = ... # type: str
_onceregistry = ... # type: dict

View File

@@ -1,6 +1,6 @@
"""Stub file for the 'signal' module."""
from typing import Any, Callable, List, Tuple, Dict, Generic, Union, Optional, Iterable
from typing import Any, Callable, List, Tuple, Dict, Generic, Union, Optional, Iterable, Set
from types import FrameType
class ItimerError(IOError): ...