]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
The fpectl module does not work on Windows, so remove Windows from the
authorFred Drake <fdrake@acm.org>
Thu, 5 Jul 2001 21:20:01 +0000 (21:20 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 5 Jul 2001 21:20:01 +0000 (21:20 +0000)
\platform statement.

Also fix a minor style consistency nit in an example.

Doc/lib/libfpectl.tex

index 53c3406affa780910703be9dec8da7296f7ccb5e..814e2265753d517fbf83ba176ae86adaa88ad65a 100644 (file)
@@ -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}