[Python-checkins] r60643 - python/trunk/Python/strtod.c

brett.cannon python-checkins at python.org
Thu Feb 7 09:04:07 CET 2008


Author: brett.cannon
Date: Thu Feb  7 09:04:07 2008
New Revision: 60643

Modified:
   python/trunk/Python/strtod.c
Log:
Remove unnecessary curly braces around an int literal.


Modified: python/trunk/Python/strtod.c
==============================================================================
--- python/trunk/Python/strtod.c	(original)
+++ python/trunk/Python/strtod.c	Thu Feb  7 09:04:07 2008
@@ -44,11 +44,11 @@
     I do know about <values.h>, but the whole point of this file is that
     we can't always trust that stuff to be there or to be correct.
 */
-static	int	MDMINEXPT	= {-323};
+static	int	MDMINEXPT	= -323;
 static	char	MDMINFRAC[]	= "494065645841246544";
 static	double	ZERO		= 0.0;
 
-static	int	MDMAXEXPT	= { 309};
+static	int	MDMAXEXPT	= 309;
 static	char	MDMAXFRAC[]	= "17976931348623157";
 static	double	HUGE		= 1.7976931348623157e308;
 


More information about the Python-checkins mailing list