From: Fred Drake Date: Mon, 19 Jul 1999 15:21:16 +0000 (+0000) Subject: Fixed order of parameters in slice() docstring. The Library Reference X-Git-Tag: v1.6a1~1074 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3d587442f9a6abca294025f8432684916ed13988;p=thirdparty%2FPython%2Fcpython.git Fixed order of parameters in slice() docstring. The Library Reference had it right! Reported by Tim Hochberg . --- diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 4e20eda4a597..9bb8784b0fde 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -1326,7 +1326,7 @@ builtin_slice(self, args) } static char slice_doc[] = -"slice([start,] step[, stop]) -> slice object\n\ +"slice([start,] stop[, step]) -> slice object\n\ \n\ Create a slice object. This is used for slicing by the Numeric extensions.";