Kaydet (Commit) 3d587442 authored tarafından Fred Drake's avatar Fred Drake

Fixed order of parameters in slice() docstring. The Library Reference

had it right!  Reported by Tim Hochberg <tim.hochberg@ieee.org>.
üst aba953ec
...@@ -1326,7 +1326,7 @@ builtin_slice(self, args) ...@@ -1326,7 +1326,7 @@ builtin_slice(self, args)
} }
static char slice_doc[] = static char slice_doc[] =
"slice([start,] step[, stop]) -> slice object\n\ "slice([start,] stop[, step]) -> slice object\n\
\n\ \n\
Create a slice object. This is used for slicing by the Numeric extensions."; Create a slice object. This is used for slicing by the Numeric extensions.";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment