new section - builtin constants

This commit is contained in:
Skip Montanaro 2003-01-01 20:33:38 +00:00
parent 2cfc4725d5
commit 17804b1df4
1 changed files with 20 additions and 0 deletions

20
Doc/lib/libconsts.tex Normal file
View File

@ -0,0 +1,20 @@
\section{Builtin Constants}
A small number of constants live in the builtin namespace. They are:
\begin{datadesc}{False}
The false value of the \code{bool} type.
\versionadded{2.3}
\end{datadesc}
\begin{datadesc}{True}
The true value of the \code{bool} type.
\versionadded{2.3}
\end{datadesc}
\begin{datadesc}{None}
The sole value of \code{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}