mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-01 09:03:23 +08:00
make IMapIterator a subclass of Iterator (#2814)
This commit is contained in:
committed by
Sebastian Rittau
parent
f569957bbe
commit
b80b2e4b98
@@ -11,7 +11,7 @@ class AsyncResult():
|
||||
def ready(self) -> bool: ...
|
||||
def successful(self) -> bool: ...
|
||||
|
||||
class IMapIterator(Iterable[Any]):
|
||||
class IMapIterator(Iterator[Any]):
|
||||
def __iter__(self) -> Iterator[Any]: ...
|
||||
def next(self, timeout: Optional[float] = ...) -> Any: ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user