From: Fred Drake Date: Thu, 5 Jul 2001 21:20:01 +0000 (+0000) Subject: The fpectl module does not work on Windows, so remove Windows from the X-Git-Tag: v2.1.1c1~26 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=02be5cbc55729451893d92fb88d9fc62adf43904;p=thirdparty%2FPython%2Fcpython.git The fpectl module does not work on Windows, so remove Windows from the \platform statement. Also fix a minor style consistency nit in an example. --- diff --git a/Doc/lib/libfpectl.tex b/Doc/lib/libfpectl.tex index 53c3406affa7..814e2265753d 100644 --- a/Doc/lib/libfpectl.tex +++ b/Doc/lib/libfpectl.tex @@ -2,7 +2,7 @@ Floating point exception control} \declaremodule{extension}{fpectl} - \platform{Unix, Windows} + \platform{Unix} \moduleauthor{Lee Busby}{busby1@llnl.gov} \sectionauthor{Lee Busby}{busby1@llnl.gov} \modulesynopsis{Provide control for floating point exception handling.} @@ -18,7 +18,7 @@ For example, try >>> import math >>> math.exp(1000) inf ->>> math.exp(1000)/math.exp(1000) +>>> math.exp(1000) / math.exp(1000) nan \end{verbatim}