]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo:34848 : Correct an incorrect docstring for range().index method (GH-9877)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 3 May 2019 12:39:17 +0000 (05:39 -0700)
committerGitHub <noreply@github.com>
Fri, 3 May 2019 12:39:17 +0000 (05:39 -0700)
(cherry picked from commit 22c526394b2ef51b985873ddbfbcc32c16411919)

Co-authored-by: Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) <thatiparthysreenivas@gmail.com>
Objects/rangeobject.c

index 037be870e36ab1fbba00cd6212c8dffafaa64d2b..157ab8194764cf02feca91150e2308afc6911b3a 100644 (file)
@@ -645,7 +645,7 @@ PyDoc_STRVAR(count_doc,
 "rangeobject.count(value) -> integer -- return number of occurrences of value");
 
 PyDoc_STRVAR(index_doc,
-"rangeobject.index(value, [start, [stop]]) -> integer -- return index of value.\n"
+"rangeobject.index(value) -> integer -- return index of value.\n"
 "Raise ValueError if the value is not present.");
 
 static PyMethodDef range_methods[] = {