(self, sep: Optional[str] = None, maxsplit: int = -1)
| 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 |
no outgoing calls