Commit efc48701 authored by pewscorner's avatar pewscorner Committed by Inada Naoki

bpo-36416: Correct bytes.rpartition documentation (GH-12543)

parent 5410d3d2
......@@ -2696,8 +2696,8 @@ arbitrary binary data.
containing the part before the separator, the separator itself or its
bytearray copy, and the part after the separator.
If the separator is not found, return a 3-tuple
containing a copy of the original sequence, followed by two empty bytes or
bytearray objects.
containing two empty bytes or bytearray objects, followed by a copy of the
original sequence.
The separator to search for may be any :term:`bytes-like object`.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment