summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-07-05 21:17:08 (GMT)
committerFred Drake <fdrake@acm.org>2001-07-05 21:17:08 (GMT)
commitbcd1df746de6fada5dab4ce261637ce48c06e118 (patch)
treeca46142951c07ea473b29c5c73b770773e73048c /Doc
parenta939911345874ce95fea08bf8a9b8add81028ab1 (diff)
downloadcpython-bcd1df746de6fada5dab4ce261637ce48c06e118.zip
cpython-bcd1df746de6fada5dab4ce261637ce48c06e118.tar.gz
cpython-bcd1df746de6fada5dab4ce261637ce48c06e118.tar.bz2
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.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libfpectl.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libfpectl.tex b/Doc/lib/libfpectl.tex
index 53c3406..814e226 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}