Define _T5

This commit is contained in:
Günther Noack
2017-03-20 17:29:39 +01:00
committed by GitHub
parent 8e0d38fd77
commit 014a23ae06

View File

@@ -47,6 +47,7 @@ _T1 = TypeVar('_T1')
_T2 = TypeVar('_T2')
_T3 = TypeVar('_T3')
_T4 = TypeVar('_T4')
_T5 = TypeVar('_T5')
@overload
def imap(func: Callable[[_T1], _S], iter1: Iterable[_T1]) -> Iterator[_S]: ...