Commit 1eb200d3 authored by Guido van Rossum's avatar Guido van Rossum

Added 3 missing types: ComplexType, SliceType, EllipsisType.

parent 78a6ddbd
...@@ -47,6 +47,10 @@ The type of long integers (e.g. \code{1L}). ...@@ -47,6 +47,10 @@ The type of long integers (e.g. \code{1L}).
The type of floating point numbers (e.g. \code{1.0}). The type of floating point numbers (e.g. \code{1.0}).
\end{datadesc} \end{datadesc}
\begin{datadesc}{ComplexType}
The type of complex numbers (e.g. \code{1.0j}).
\end{datadesc}
\begin{datadesc}{StringType} \begin{datadesc}{StringType}
The type of character strings (e.g. \code{'Spam'}). The type of character strings (e.g. \code{'Spam'}).
\end{datadesc} \end{datadesc}
...@@ -118,6 +122,15 @@ The type of range objects returned by ...@@ -118,6 +122,15 @@ The type of range objects returned by
\function{xrange()}\bifuncindex{xrange}. \function{xrange()}\bifuncindex{xrange}.
\end{datadesc} \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} \begin{datadesc}{TracebackType}
The type of traceback objects such as found in The type of traceback objects such as found in
\code{sys.exc_traceback}. \code{sys.exc_traceback}.
......
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