@@ -1549,6 +1549,33 @@ expression support in the :mod:`re` module).
1549
1549
interpreted as in slice notation.
1550
1550
1551
1551
1552
+ .. method :: str.removeprefix(prefix, /)
1553
+
1554
+ If the string starts with the *prefix * string, return
1555
+ ``string[len(prefix):] ``. Otherwise, return a copy of the original
1556
+ string::
1557
+
1558
+ >>> 'TestHook'.removeprefix('Test')
1559
+ 'Hook'
1560
+ >>> 'BaseTestCase'.removeprefix('Test')
1561
+ 'BaseTestCase'
1562
+
1563
+ .. versionadded :: 3.9
1564
+
1565
+ .. method :: str.removesuffix(suffix, /)
1566
+
1567
+ If the string ends with the *suffix * string and that *suffix * is not empty,
1568
+ return ``string[:-len(suffix)] ``. Otherwise, return a copy of the
1569
+ original string::
1570
+
1571
+ >>> 'MiscTests'.removesuffix('Tests')
1572
+ 'Misc'
1573
+ >>> 'TmpDirMixin'.removesuffix('Tests')
1574
+ 'TmpDirMixin'
1575
+
1576
+ .. versionadded :: 3.9
1577
+
1578
+
1552
1579
.. method :: str.encode(encoding="utf-8", errors="strict")
1553
1580
1554
1581
Return an encoded version of the string as a bytes object. Default encoding
@@ -1831,6 +1858,14 @@ expression support in the :mod:`re` module).
1831
1858
>>> 'www.example.com'.lstrip('cmowz.')
1832
1859
'example.com'
1833
1860
1861
+ See :meth: `str.removeprefix ` for a method that will remove a single prefix
1862
+ string rather than all of a set of characters. For example::
1863
+
1864
+ >>> 'Arthur: three!'.lstrip('Arthur: ')
1865
+ 'ee!'
1866
+ >>> 'Arthur: three!'.removeprefix('Arthur: ')
1867
+ 'three!'
1868
+
1834
1869
1835
1870
.. staticmethod :: str.maketrans(x[, y[, z]])
1836
1871
@@ -1911,6 +1946,13 @@ expression support in the :mod:`re` module).
1911
1946
>>> 'mississippi'.rstrip('ipz')
1912
1947
'mississ'
1913
1948
1949
+ See :meth: `str.removesuffix ` for a method that will remove a single suffix
1950
+ string rather than all of a set of characters. For example::
1951
+
1952
+ >>> 'Monty Python'.rstrip(' Python')
1953
+ 'M'
1954
+ >>> 'Monty Python'.removesuffix(' Python')
1955
+ 'Monty'
1914
1956
1915
1957
.. method :: str.split(sep=None, maxsplit=-1)
1916
1958
@@ -2591,6 +2633,50 @@ arbitrary binary data.
2591
2633
Also accept an integer in the range 0 to 255 as the subsequence.
2592
2634
2593
2635
2636
+ .. method :: bytes.removeprefix(prefix, /)
2637
+ bytearray.removeprefix(prefix, /)
2638
+
2639
+ If the binary data starts with the *prefix * string, return
2640
+ ``bytes[len(prefix):] ``. Otherwise, return a copy of the original
2641
+ binary data::
2642
+
2643
+ >>> b'TestHook'.removeprefix(b'Test')
2644
+ b'Hook'
2645
+ >>> b'BaseTestCase'.removeprefix(b'Test')
2646
+ b'BaseTestCase'
2647
+
2648
+ The *prefix * may be any :term: `bytes-like object `.
2649
+
2650
+ .. note ::
2651
+
2652
+ The bytearray version of this method does *not * operate in place -
2653
+ it always produces a new object, even if no changes were made.
2654
+
2655
+ .. versionadded :: 3.9
2656
+
2657
+
2658
+ .. method :: bytes.removesuffix(suffix, /)
2659
+ bytearray.removesuffix(suffix, /)
2660
+
2661
+ If the binary data ends with the *suffix * string and that *suffix * is
2662
+ not empty, return ``bytes[:-len(suffix)] ``. Otherwise, return a copy of
2663
+ the original binary data::
2664
+
2665
+ >>> b'MiscTests'.removesuffix(b'Tests')
2666
+ b'Misc'
2667
+ >>> b'TmpDirMixin'.removesuffix(b'Tests')
2668
+ b'TmpDirMixin'
2669
+
2670
+ The *suffix * may be any :term: `bytes-like object `.
2671
+
2672
+ .. note ::
2673
+
2674
+ The bytearray version of this method does *not * operate in place -
2675
+ it always produces a new object, even if no changes were made.
2676
+
2677
+ .. versionadded :: 3.9
2678
+
2679
+
2594
2680
.. method :: bytes.decode(encoding="utf-8", errors="strict")
2595
2681
bytearray.decode(encoding="utf-8", errors="strict")
2596
2682
@@ -2841,7 +2927,14 @@ produce new objects.
2841
2927
b'example.com'
2842
2928
2843
2929
The binary sequence of byte values to remove may be any
2844
- :term: `bytes-like object `.
2930
+ :term: `bytes-like object `. See :meth: `~bytes.removeprefix ` for a method
2931
+ that will remove a single prefix string rather than all of a set of
2932
+ characters. For example::
2933
+
2934
+ >>> b'Arthur: three!'.lstrip(b'Arthur: ')
2935
+ b'ee!'
2936
+ >>> b'Arthur: three!'.removeprefix(b'Arthur: ')
2937
+ b'three!'
2845
2938
2846
2939
.. note ::
2847
2940
@@ -2890,7 +2983,14 @@ produce new objects.
2890
2983
b'mississ'
2891
2984
2892
2985
The binary sequence of byte values to remove may be any
2893
- :term: `bytes-like object `.
2986
+ :term: `bytes-like object `. See :meth: `~bytes.removesuffix ` for a method
2987
+ that will remove a single suffix string rather than all of a set of
2988
+ characters. For example::
2989
+
2990
+ >>> b'Monty Python'.rstrip(b' Python')
2991
+ b'M'
2992
+ >>> b'Monty Python'.removesuffix(b' Python')
2993
+ b'Monty'
2894
2994
2895
2995
.. note ::
2896
2996
0 commit comments