From: Fred Drake Date: Tue, 21 May 2002 14:32:44 +0000 (+0000) Subject: Add availability information for a couple of the types. X-Git-Tag: 2.1~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3722b84cc42167439ab6495d2c7d6129059fb8bd;p=thirdparty%2FPython%2Fcpython.git Add availability information for a couple of the types. --- diff --git a/Doc/lib/libtypes.tex b/Doc/lib/libtypes.tex index 8ade4a6be956..a2be143c68f3 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}