diff options
author | Guido van Rossum <guido@python.org> | 1998-07-24 15:02:02 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-07-24 15:02:02 (GMT) |
commit | b193c9516592e5873c412a35d8df5ee5cdb16188 (patch) | |
tree | c860cec01e5258a1eeb8de01cb71932931fdb3fb | |
parent | 1eb200d360f082010ed4358b87f0547db0dda908 (diff) | |
download | cpython-b193c9516592e5873c412a35d8df5ee5cdb16188.zip cpython-b193c9516592e5873c412a35d8df5ee5cdb16188.tar.gz cpython-b193c9516592e5873c412a35d8df5ee5cdb16188.tar.bz2 |
Document Ellipsis (not much of a documentation snippet, but at least
it's mentioned.
-rw-r--r-- | Doc/lib/libstdtypes.tex | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex index b612a0b..79740ff 100644 --- a/Doc/lib/libstdtypes.tex +++ b/Doc/lib/libstdtypes.tex @@ -692,6 +692,15 @@ object, named \code{None} (a built-in name). It is written as \code{None}. +\subsubsection{The Ellipsis Object} +\label{bltin-ellipsis-object} + +This object is used by extended slice notation (see the \emph{Python +Reference Manual}). It supports no special operations. There is +exactly one ellipsis object, named \code{Ellipsis} (a built-in name). + +It is written as \code{Ellipsis}. + \subsubsection{File Objects} \label{bltin-file-objects} |