]> granicus.if.org Git - python/commitdiff
Remove unnecessary curly braces around an int literal.
authorBrett Cannon <bcannon@gmail.com>
Thu, 7 Feb 2008 08:04:07 +0000 (08:04 +0000)
committerBrett Cannon <bcannon@gmail.com>
Thu, 7 Feb 2008 08:04:07 +0000 (08:04 +0000)
Python/strtod.c

index 5c084a4de0ddce91bb6b6939526d660a6554d46d..a248460bce764a394c2e411537243d3985afcc8b 100644 (file)
     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;