(*args: object)
| 396 | # This type is obviously wrong but the test stubs don't have Sized anymore |
| 397 | def len(o: object) -> int: pass |
| 398 | def print(*args: object) -> None: pass |
| 399 | def isinstance(x: object, t: object) -> bool: pass |
| 400 | def iter(i: Iterable[_T]) -> Iterator[_T]: pass |
| 401 | @overload |
no outgoing calls
searching dependent graphs…