From 76e47f3d7578f4a438c7627569553ffa9d9b568b Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sat, 2 Nov 1996 17:05:21 +0000 Subject: Change last Ellipses to Ellipsis :-( --- Doc/tut.tex | 6 +++--- Doc/tut/tut.tex | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Doc/tut.tex b/Doc/tut.tex index 459e9c6..2e0ab9a 100644 --- a/Doc/tut.tex +++ b/Doc/tut.tex @@ -3942,10 +3942,10 @@ e.g. \code{x[1, 2, 3]} is equivalent to \code{x[(1, 2, 3)]}. New slicing syntax. In support of the Numerical Python extension (distributed independently), slice indices of the form \code{x[lo:hi:stride]} are possible, multiple slice indices separated by -commas are allowed, and an index position may be replaced by ellipses, +commas are allowed, and an index position may be replaced by an ellipsis, as follows: \code{x[a, ..., z]}. There's also a new built-in function \code{slice(lo, hi, stride)} and a new built-in object -\code{Ellipses}, which yield the same effect without using special +\code{Ellipsis}, which yield the same effect without using special syntax. None of the standard sequence types support indexing with slice objects or ellipses yet. @@ -3964,7 +3964,7 @@ x[::-1] -> slice(None, None, -1) x[::] -> slice(None, None, None) x[1, 2:3] -> (1, slice(2, 3, None)) x[1:2, 3:4] -> (slice(1, 2, None), slice(3, 4, None)) -x[1:2, ..., 3:4] -> (slice(1, 2, None), Ellipses, +x[1:2, ..., 3:4] -> (slice(1, 2, None), Ellipsis, slice(3, 4, None)) \end{verbatim} diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 459e9c6..2e0ab9a 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -3942,10 +3942,10 @@ e.g. \code{x[1, 2, 3]} is equivalent to \code{x[(1, 2, 3)]}. New slicing syntax. In support of the Numerical Python extension (distributed independently), slice indices of the form \code{x[lo:hi:stride]} are possible, multiple slice indices separated by -commas are allowed, and an index position may be replaced by ellipses, +commas are allowed, and an index position may be replaced by an ellipsis, as follows: \code{x[a, ..., z]}. There's also a new built-in function \code{slice(lo, hi, stride)} and a new built-in object -\code{Ellipses}, which yield the same effect without using special +\code{Ellipsis}, which yield the same effect without using special syntax. None of the standard sequence types support indexing with slice objects or ellipses yet. @@ -3964,7 +3964,7 @@ x[::-1] -> slice(None, None, -1) x[::] -> slice(None, None, None) x[1, 2:3] -> (1, slice(2, 3, None)) x[1:2, 3:4] -> (slice(1, 2, None), slice(3, 4, None)) -x[1:2, ..., 3:4] -> (slice(1, 2, None), Ellipses, +x[1:2, ..., 3:4] -> (slice(1, 2, None), Ellipsis, slice(3, 4, None)) \end{verbatim} -- cgit v0.12