| 93 | def bit_length(self) -> int: pass |
| 94 | |
| 95 | class str: |
| 96 | @overload |
| 97 | def __init__(self) -> None: pass |
| 98 | @overload |
| 99 | def __init__(self, x: object) -> None: pass |
| 100 | def __add__(self, x: str) -> str: pass |
| 101 | def __mul__(self, x: int) -> str: pass |
| 102 | def __rmul__(self, x: int) -> str: pass |
| 103 | def __eq__(self, x: object) -> bool: pass |
| 104 | def __ne__(self, x: object) -> bool: pass |
| 105 | def __lt__(self, x: str) -> bool: ... |
| 106 | def __le__(self, x: str) -> bool: ... |
| 107 | def __gt__(self, x: str) -> bool: ... |
| 108 | def __ge__(self, x: str) -> bool: ... |
| 109 | @overload |
| 110 | def __getitem__(self, i: int) -> str: pass |
| 111 | @overload |
| 112 | def __getitem__(self, i: slice) -> str: pass |
| 113 | def __contains__(self, item: str) -> bool: pass |
| 114 | def __iter__(self) -> Iterator[str]: ... |
| 115 | def find(self, sub: str, start: Optional[int] = None, end: Optional[int] = None, /) -> int: ... |
| 116 | def rfind(self, sub: str, start: Optional[int] = None, end: Optional[int] = None, /) -> int: ... |
| 117 | def split(self, sep: Optional[str] = None, maxsplit: int = -1) -> List[str]: pass |
| 118 | def rsplit(self, sep: Optional[str] = None, maxsplit: int = -1) -> List[str]: pass |
| 119 | def splitlines(self, keepends: bool = False) -> List[str]: ... |
| 120 | def strip (self, item: Optional[str] = None) -> str: pass |
| 121 | def lstrip(self, item: Optional[str] = None) -> str: pass |
| 122 | def rstrip(self, item: Optional[str] = None) -> str: pass |
| 123 | def join(self, x: Iterable[str]) -> str: pass |
| 124 | def format(self, *args: Any, **kwargs: Any) -> str: ... |
| 125 | def lower(self) -> str: ... |
| 126 | def upper(self) -> str: ... |
| 127 | def startswith(self, x: Union[str, Tuple[str, ...]], start: int=..., end: int=...) -> bool: ... |
| 128 | def endswith(self, x: Union[str, Tuple[str, ...]], start: int=..., end: int=...) -> bool: ... |
| 129 | def replace(self, old: str, new: str, maxcount: int=...) -> str: ... |
| 130 | def encode(self, encoding: str=..., errors: str=...) -> bytes: ... |
| 131 | def partition(self, sep: str, /) -> Tuple[str, str, str]: ... |
| 132 | def rpartition(self, sep: str, /) -> Tuple[str, str, str]: ... |
| 133 | def removeprefix(self, prefix: str, /) -> str: ... |
| 134 | def removesuffix(self, suffix: str, /) -> str: ... |
| 135 | def islower(self) -> bool: ... |
| 136 | def count(self, substr: str, start: Optional[int] = None, end: Optional[int] = None) -> int: pass |
| 137 | def isspace(self) -> bool: ... |
| 138 | def isalnum(self) -> bool: ... |
| 139 | def isdigit(self) -> bool: ... |
| 140 | |
| 141 | class float: |
| 142 | def __init__(self, x: object) -> None: pass |
no outgoing calls