[Python-checkins] CVS: python/dist/src/Include pyport.h,2.34,2.35

Tim Peters tim_one@users.sourceforge.net
Tue, 04 Sep 2001 23:24:26 -0700


Update of /cvsroot/python/python/dist/src/Include
In directory usw-pr-cvs1:/tmp/cvs-serv17904/python/Include

Modified Files:
	pyport.h 
Log Message:
Repair indentation.


Index: pyport.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/pyport.h,v
retrieving revision 2.34
retrieving revision 2.35
diff -C2 -d -r2.34 -r2.35
*** pyport.h	2001/09/05 05:38:10	2.34
--- pyport.h	2001/09/05 06:24:24	2.35
***************
*** 237,245 ****
   * Caution:
   *    This isn't reliable.  C99 no longer requires libm to set errno under
!  *        any exceptional condition, but does require +- HUGE_VAL return
!  *        values on overflow.  A 754 box *probably* maps HUGE_VAL to a
!  *        double infinity, and we're cool if that's so, unless the input
!  *        was an infinity and an infinity is the expected result.  A C89
!  *        system sets errno to ERANGE, so we check for that too.  We're
   *	  out of luck if a C99 754 box doesn't map HUGE_VAL to +Inf, or
   *	  if the returned result is a NaN, or if a C89 box returns HUGE_VAL
--- 237,245 ----
   * Caution:
   *    This isn't reliable.  C99 no longer requires libm to set errno under
!  *	  any exceptional condition, but does require +- HUGE_VAL return
!  *	  values on overflow.  A 754 box *probably* maps HUGE_VAL to a
!  *	  double infinity, and we're cool if that's so, unless the input
!  *	  was an infinity and an infinity is the expected result.  A C89
!  *	  system sets errno to ERANGE, so we check for that too.  We're
   *	  out of luck if a C99 754 box doesn't map HUGE_VAL to +Inf, or
   *	  if the returned result is a NaN, or if a C89 box returns HUGE_VAL