diff options
Diffstat (limited to 'Doc/lib/libconsts.tex')
-rw-r--r-- | Doc/lib/libconsts.tex | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/Doc/lib/libconsts.tex b/Doc/lib/libconsts.tex deleted file mode 100644 index bf36281..0000000 --- a/Doc/lib/libconsts.tex +++ /dev/null @@ -1,33 +0,0 @@ -\section{Built-in Constants} - -A small number of constants live in the built-in namespace. They are: - -\begin{datadesc}{False} - The false value of the \class{bool} type. - \versionadded{2.3} -\end{datadesc} - -\begin{datadesc}{True} - The true value of the \class{bool} type. - \versionadded{2.3} -\end{datadesc} - -\begin{datadesc}{None} - The sole value of \member{\refmodule{types}.NoneType}. \code{None} is - frequently used to represent the absence of a value, as when default - arguments are not passed to a function. -\end{datadesc} - -\begin{datadesc}{NotImplemented} - Special value which can be returned by the ``rich comparison'' - special methods (\method{__eq__()}, \method{__lt__()}, and friends), - to indicate that the comparison is not implemented with respect to - the other type. -\end{datadesc} - -\begin{datadesc}{Ellipsis} - The same as \code{...}. - Special value used mostly in conjunction with extended slicing syntax - for user-defined container data types. - % XXX Someone who understands extended slicing should fill in here. -\end{datadesc} |