(self, sub: str, start: Optional[int] = None, end: Optional[int] = None, /)
| 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 |
no outgoing calls