diff options
author | Guido van Rossum <guido@python.org> | 1998-07-24 15:01:05 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-07-24 15:01:05 (GMT) |
commit | 1eb200d360f082010ed4358b87f0547db0dda908 (patch) | |
tree | e4642dc9f77ce6b099cd06a148a68c13dcecfaab | |
parent | 78a6ddbdd174aac5441b843bcd09d81f1fce023b (diff) | |
download | cpython-1eb200d360f082010ed4358b87f0547db0dda908.zip cpython-1eb200d360f082010ed4358b87f0547db0dda908.tar.gz cpython-1eb200d360f082010ed4358b87f0547db0dda908.tar.bz2 |
Added 3 missing types: ComplexType, SliceType, EllipsisType.
-rw-r--r-- | Doc/lib/libtypes.tex | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Doc/lib/libtypes.tex b/Doc/lib/libtypes.tex index 07bf35a..f3c4ee0 100644 --- a/Doc/lib/libtypes.tex +++ b/Doc/lib/libtypes.tex @@ -47,6 +47,10 @@ The type of long integers (e.g. \code{1L}). The type of floating point numbers (e.g. \code{1.0}). \end{datadesc} +\begin{datadesc}{ComplexType} +The type of complex numbers (e.g. \code{1.0j}). +\end{datadesc} + \begin{datadesc}{StringType} The type of character strings (e.g. \code{'Spam'}). \end{datadesc} @@ -118,6 +122,15 @@ The type of range objects returned by \function{xrange()}\bifuncindex{xrange}. \end{datadesc} +\begin{datadesc}{SliceType} +The type of objects returned by +\function{slice()}\bifuncindex{slice}. +\end{datadesc} + +\begin{datadesc}{EllipsisType} +The type of \code{Ellipsis}. +\end{datadesc} + \begin{datadesc}{TracebackType} The type of traceback objects such as found in \code{sys.exc_traceback}. |