From: Ezio Melotti Date: Mon, 25 Jan 2010 11:46:11 +0000 (+0000) Subject: Merged revisions 77743 via svnmerge from X-Git-Tag: v2.6.5rc1~139 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dabb5f7db93578de4657ae57dc0ade33f4f534aa;p=thirdparty%2FPython%2Fcpython.git Merged revisions 77743 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r77743 | ezio.melotti | 2010-01-25 13:24:37 +0200 (Mon, 25 Jan 2010) | 1 line #7775: fixed docstring for rpartition ........ --- diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c index c4a25c0d9a4e..1b4c22a9e063 100644 --- a/Objects/bytearrayobject.c +++ b/Objects/bytearrayobject.c @@ -2390,7 +2390,7 @@ bytes_partition(PyByteArrayObject *self, PyObject *sep_obj) } PyDoc_STRVAR(rpartition__doc__, -"B.rpartition(sep) -> (tail, sep, head)\n\ +"B.rpartition(sep) -> (head, sep, tail)\n\ \n\ Searches for the separator sep in B, starting at the end of B,\n\ and returns the part before it, the separator itself, and the\n\ diff --git a/Objects/stringobject.c b/Objects/stringobject.c index ebf97b5b06b4..996c260008ce 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -1620,7 +1620,7 @@ string_partition(PyStringObject *self, PyObject *sep_obj) } PyDoc_STRVAR(rpartition__doc__, -"S.rpartition(sep) -> (tail, sep, head)\n\ +"S.rpartition(sep) -> (head, sep, tail)\n\ \n\ Search for the separator sep in S, starting at the end of S, and return\n\ the part before it, the separator itself, and the part after it. If the\n\ diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 55c781e4d811..3731ac7601cf 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -7603,7 +7603,7 @@ unicode_partition(PyUnicodeObject *self, PyObject *separator) } PyDoc_STRVAR(rpartition__doc__, - "S.rpartition(sep) -> (tail, sep, head)\n\ + "S.rpartition(sep) -> (head, sep, tail)\n\ \n\ Search for the separator sep in S, starting at the end of S, and return\n\ the part before it, the separator itself, and the part after it. If the\n\