From 3d587442f9a6abca294025f8432684916ed13988 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Mon, 19 Jul 1999 15:21:16 +0000 Subject: Fixed order of parameters in slice() docstring. The Library Reference had it right! Reported by Tim Hochberg . --- Python/bltinmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 4e20eda..9bb8784 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."; -- cgit v0.12