File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 11.. _frozenset-ops :
22
33Native frozenset operations
4- ======================
4+ ===========================
55
66These ``frozenset `` operations have fast, optimized implementations. Other
77frozenset operations use generic implementations that are often slower.
Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ Methods
3737* ``s1.find(s2: str, start: int) ``
3838* ``s1.find(s2: str, start: int, end: int) ``
3939* ``s.join(x: Iterable) ``
40+ * ``s.lstrip() ``
41+ * ``s.lstrip(chars: str) ``
4042* ``s.partition(sep: str) ``
4143* ``s.removeprefix(prefix: str) ``
4244* ``s.removesuffix(suffix: str) ``
@@ -49,13 +51,17 @@ Methods
4951* ``s.rsplit() ``
5052* ``s.rsplit(sep: str) ``
5153* ``s.rsplit(sep: str, maxsplit: int) ``
54+ * ``s.rstrip() ``
55+ * ``s.rstrip(chars: str) ``
5256* ``s.split() ``
5357* ``s.split(sep: str) ``
5458* ``s.split(sep: str, maxsplit: int) ``
5559* ``s.splitlines() ``
5660* ``s.splitlines(keepends: bool) ``
5761* ``s1.startswith(s2: str) ``
5862* ``s1.startswith(t: tuple[str, ...]) ``
63+ * ``s.strip() ``
64+ * ``s.strip(chars: str) ``
5965
6066.. note ::
6167
You can’t perform that action at this time.
0 commit comments