summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2003-01-01 20:33:38 (GMT)
committerSkip Montanaro <skip@pobox.com>2003-01-01 20:33:38 (GMT)
commit17804b1df42ff28fc15a0a7c79731e0cff393baa (patch)
treecb1d0cf34361fff86cffb27644474642a5cac6fd
parent2cfc4725d5285ce48feebdb75452510008067e51 (diff)
downloadcpython-17804b1df42ff28fc15a0a7c79731e0cff393baa.zip
cpython-17804b1df42ff28fc15a0a7c79731e0cff393baa.tar.gz
cpython-17804b1df42ff28fc15a0a7c79731e0cff393baa.tar.bz2
new section - builtin constants
-rw-r--r--Doc/lib/libconsts.tex20
1 files changed, 20 insertions, 0 deletions
diff --git a/Doc/lib/libconsts.tex b/Doc/lib/libconsts.tex
new file mode 100644
index 0000000..e8e620c
--- /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}
+