blob: e8e620c55afa6600d7cf4f02c743e51c5dadf243 [file] [log] [blame]
Skip Montanaro17804b12003-01-01 20:33:38 +00001\section{Builtin Constants}
2
3A small number of constants live in the builtin namespace. They are:
4
5\begin{datadesc}{False}
6The false value of the \code{bool} type.
7\versionadded{2.3}
8\end{datadesc}
9
10\begin{datadesc}{True}
11The true value of the \code{bool} type.
12\versionadded{2.3}
13\end{datadesc}
14
15\begin{datadesc}{None}
16The sole value of \code{NoneType}. \code{None} is frequently used to
17represent the absence of a value, as when default arguments are not passed
18to a function.
19\end{datadesc}
20