| 211 | def __iter__(self) -> Iterator[int]: ... |
| 212 | |
| 213 | class bool(int): |
| 214 | def __init__(self, o: object = ...) -> None: ... |
| 215 | @overload |
| 216 | def __and__(self, n: bool) -> bool: ... |
| 217 | @overload |
| 218 | def __and__(self, n: int) -> int: ... |
| 219 | @overload |
| 220 | def __or__(self, n: bool) -> bool: ... |
| 221 | @overload |
| 222 | def __or__(self, n: int) -> int: ... |
| 223 | @overload |
| 224 | def __xor__(self, n: bool) -> bool: ... |
| 225 | @overload |
| 226 | def __xor__(self, n: int) -> int: ... |
| 227 | |
| 228 | class tuple(Generic[T_co], Sequence[T_co], Iterable[T_co]): |
| 229 | def __init__(self, i: Iterable[T_co]) -> None: pass |
no outgoing calls
searching dependent graphs…