(x: Iterable[_T], y: Iterable[_S])
| 411 | def enumerate(x: Iterable[_T]) -> Iterator[Tuple[int, _T]]: ... |
| 412 | @overload |
| 413 | def zip(x: Iterable[_T], y: Iterable[_S]) -> Iterator[Tuple[_T, _S]]: ... |
| 414 | @overload |
| 415 | def zip(x: Iterable[_T], y: Iterable[_S], z: Iterable[_V]) -> Iterator[Tuple[_T, _S, _V]]: ... |
| 416 | def eval(e: str) -> Any: ... |
no outgoing calls