We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e788168 commit 68c81ceCopy full SHA for 68c81ce
mypyc/test-data/fixtures/ir.py
@@ -308,6 +308,11 @@ def __iter__(self) -> Iterator[int]: pass
308
def __len__(self) -> int: pass
309
def __next__(self) -> int: pass
310
311
+class map(Iterator[_S]):
312
+ def __init__(self, func: Callable[[_T], _S], iterable: Iterable[_T]) -> None: pass
313
+ def __iter__(self) -> Self: pass
314
+ def __next__(self) -> _S: pass
315
+
316
class property:
317
def __init__(self, fget: Optional[Callable[[Any], Any]] = ...,
318
fset: Optional[Callable[[Any, Any], None]] = ...,
0 commit comments