From 17804b1df42ff28fc15a0a7c79731e0cff393baa Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Wed, 1 Jan 2003 20:33:38 +0000 Subject: [PATCH] new section - builtin constants --- Doc/lib/libconsts.tex | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Doc/lib/libconsts.tex diff --git a/Doc/lib/libconsts.tex b/Doc/lib/libconsts.tex new file mode 100644 index 0000000000..e8e620c55a --- /dev/null +++ b/Doc/lib/libconsts.tex @@ -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} + -- 2.50.1