new section - builtin constants
This commit is contained in:
parent
2cfc4725d5
commit
17804b1df4
|
@ -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}
|
||||
|
Loading…
Reference in New Issue