diff options
-rw-r--r-- | Python/strtod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/strtod.c b/Python/strtod.c index 675de30..bcdef32 100644 --- a/Python/strtod.c +++ b/Python/strtod.c @@ -47,8 +47,8 @@ static char MDMINFRAC[] = "494065645841246544"; static double ZERO = 0.0; static int MDMAXEXPT = { 309}; -static char MDMAXFRAC[] = "17976931348623147"; -static double HUGE = 1.7976931348623147e308; +static char MDMAXFRAC[] = "17976931348623157"; +static double HUGE = 1.7976931348623157e308; extern double atof(); /* Only called when result known to be ok */ |