Skip to content

Commit efc4870

Browse files
pewscornermethane
authored andcommitted
bpo-36416: Correct bytes.rpartition documentation (GH-12543)
1 parent 5410d3d commit efc4870

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/library/stdtypes.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2696,8 +2696,8 @@ arbitrary binary data.
26962696
containing the part before the separator, the separator itself or its
26972697
bytearray copy, and the part after the separator.
26982698
If the separator is not found, return a 3-tuple
2699-
containing a copy of the original sequence, followed by two empty bytes or
2700-
bytearray objects.
2699+
containing two empty bytes or bytearray objects, followed by a copy of the
2700+
original sequence.
27012701

27022702
The separator to search for may be any :term:`bytes-like object`.
27032703

0 commit comments

Comments
 (0)