summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2002-05-21 14:32:44 +0000
committerFred Drake <fdrake@acm.org>2002-05-21 14:32:44 +0000
commitb064e2b1dc3f1386ad201249308ae43ebffdeba2 (patch)
treed52d4fc92076699ee3ebedabc1ea0d4054a20053
parent7a0378ad1211265d049cc9bf75f481a87a26f2db (diff)
downloadcpython-b064e2b1dc3f1386ad201249308ae43ebffdeba2.tar.gz
Add availability information for a couple of the types.
-rw-r--r--Doc/lib/libtypes.tex6
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/lib/libtypes.tex b/Doc/lib/libtypes.tex
index 8ade4a6be9..a2be143c68 100644
--- a/Doc/lib/libtypes.tex
+++ b/Doc/lib/libtypes.tex
@@ -48,7 +48,8 @@ The type of floating point numbers (e.g. \code{1.0}).
\end{datadesc}
\begin{datadesc}{ComplexType}
-The type of complex numbers (e.g. \code{1.0j}).
+The type of complex numbers (e.g. \code{1.0j}). This is not defined
+if Python was built without complex number support.
\end{datadesc}
\begin{datadesc}{StringType}
@@ -56,7 +57,8 @@ The type of character strings (e.g. \code{'Spam'}).
\end{datadesc}
\begin{datadesc}{UnicodeType}
-The type of Unicode character strings (e.g. \code{u'Spam'}).
+The type of Unicode character strings (e.g. \code{u'Spam'}). This is
+not defined if Python was built without Unicode support.
\end{datadesc}
\begin{datadesc}{TupleType}