| 171 | def __neg__(self) -> complex: pass |
| 172 | |
| 173 | class bytes: |
| 174 | @overload |
| 175 | def __init__(self) -> None: ... |
| 176 | @overload |
| 177 | def __init__(self, x: object) -> None: ... |
| 178 | def __add__(self, x: bytes | bytearray) -> bytes: ... |
| 179 | def __mul__(self, x: int) -> bytes: ... |
| 180 | def __rmul__(self, x: int) -> bytes: ... |
| 181 | def __eq__(self, x: object) -> bool: ... |
| 182 | def __ne__(self, x: object) -> bool: ... |
| 183 | @overload |
| 184 | def __getitem__(self, i: int) -> int: ... |
| 185 | @overload |
| 186 | def __getitem__(self, i: slice) -> bytes: ... |
| 187 | def join(self, x: Iterable[object]) -> bytes: ... |
| 188 | def decode(self, encoding: str=..., errors: str=...) -> str: ... |
| 189 | def translate(self, t: bytes | bytearray) -> bytes: ... |
| 190 | def startswith(self, t: bytes | bytearray) -> bool: ... |
| 191 | def endswith(self, t: bytes | bytearray) -> bool: ... |
| 192 | def __iter__(self) -> Iterator[int]: ... |
| 193 | |
| 194 | class bytearray: |
| 195 | @overload |
no outgoing calls
searching dependent graphs…