[Python-checkins] CVS: python/dist/src/Doc/lib libfpectl.tex,1.1,1.1.4.1

Fred L. Drake fdrake@users.sourceforge.net
Thu, 05 Jul 2001 14:20:03 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv21672/lib

Modified Files:
      Tag: release21-maint
	libfpectl.tex 
Log Message:

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.


Index: libfpectl.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libfpectl.tex,v
retrieving revision 1.1
retrieving revision 1.1.4.1
diff -C2 -r1.1 -r1.1.4.1
*** libfpectl.tex	2001/01/09 20:38:54	1.1
--- libfpectl.tex	2001/07/05 21:20:01	1.1.4.1
***************
*** 3,7 ****
  
  \declaremodule{extension}{fpectl}
!   \platform{Unix, Windows}
  \moduleauthor{Lee Busby}{busby1@llnl.gov}
  \sectionauthor{Lee Busby}{busby1@llnl.gov}
--- 3,7 ----
  
  \declaremodule{extension}{fpectl}
!   \platform{Unix}
  \moduleauthor{Lee Busby}{busby1@llnl.gov}
  \sectionauthor{Lee Busby}{busby1@llnl.gov}
***************
*** 19,23 ****
  >>> math.exp(1000)
  inf
! >>> math.exp(1000)/math.exp(1000)
  nan
  \end{verbatim}
--- 19,23 ----
  >>> math.exp(1000)
  inf
! >>> math.exp(1000) / math.exp(1000)
  nan
  \end{verbatim}