]> granicus.if.org Git - python/commitdiff
bpo-36416: Correct bytes.rpartition documentation (GH-12543)
authorpewscorner <pewscorner@users.noreply.github.com>
Thu, 11 Apr 2019 06:58:43 +0000 (08:58 +0200)
committerInada Naoki <songofacandy@gmail.com>
Thu, 11 Apr 2019 06:58:43 +0000 (15:58 +0900)
Doc/library/stdtypes.rst

index 66915a7c560aa474c1b7687ebc3de42f64121984..bae989e6b3a9fa75164461252bb741de27c16423 100644 (file)
@@ -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`.