From: Georg Brandl Date: Sun, 29 Jul 2007 17:38:35 +0000 (+0000) Subject: Bug #1763149: use proper slice syntax in docstring. X-Git-Tag: v2.6a1~1532 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9efd9b6fa446978566f5b146f552aac87e62a7b0;p=python Bug #1763149: use proper slice syntax in docstring. (backport) --- diff --git a/Objects/stringobject.c b/Objects/stringobject.c index 16affdd6d5..4dd64f8429 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -1891,7 +1891,7 @@ PyDoc_STRVAR(find__doc__, "S.find(sub [,start [,end]]) -> int\n\ \n\ Return the lowest index in S where substring sub is found,\n\ -such that sub is contained within s[start,end]. Optional\n\ +such that sub is contained within s[start:end]. Optional\n\ arguments start and end are interpreted as in slice notation.\n\ \n\ Return -1 on failure."); @@ -1930,7 +1930,7 @@ PyDoc_STRVAR(rfind__doc__, "S.rfind(sub [,start [,end]]) -> int\n\ \n\ Return the highest index in S where substring sub is found,\n\ -such that sub is contained within s[start,end]. Optional\n\ +such that sub is contained within s[start:end]. Optional\n\ arguments start and end are interpreted as in slice notation.\n\ \n\ Return -1 on failure."); diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 1a532c905e..f686ba6c5b 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -5760,7 +5760,7 @@ PyDoc_STRVAR(find__doc__, "S.find(sub [,start [,end]]) -> int\n\ \n\ Return the lowest index in S where substring sub is found,\n\ -such that sub is contained within s[start,end]. Optional\n\ +such that sub is contained within s[start:end]. Optional\n\ arguments start and end are interpreted as in slice notation.\n\ \n\ Return -1 on failure."); @@ -6501,7 +6501,7 @@ PyDoc_STRVAR(rfind__doc__, "S.rfind(sub [,start [,end]]) -> int\n\ \n\ Return the highest index in S where substring sub is found,\n\ -such that sub is contained within s[start,end]. Optional\n\ +such that sub is contained within s[start:end]. Optional\n\ arguments start and end are interpreted as in slice notation.\n\ \n\ Return -1 on failure.");