diff options
author | guido <guido@google.com> | 2011-03-29 12:02:49 -0700 |
---|---|---|
committer | guido <guido@google.com> | 2011-03-29 12:02:49 -0700 |
commit | cea1c1161964fc314a0e3dd68e74ceb563fc528c (patch) | |
tree | 89c6f150cb5aec505ea2e0e3df746f50b3e85050 /Python/dtoa.c | |
parent | 7e603d1d2989bfb010d3641a3e152df13e0afbb0 (diff) | |
parent | dff28659880a2ce62ef2c87dc7de58aaa86b85fc (diff) | |
download | cpython-cea1c1161964fc314a0e3dd68e74ceb563fc528c.tar.gz |
Merge Issue 11662 from 3.2 branch.
Diffstat (limited to 'Python/dtoa.c')
-rw-r--r-- | Python/dtoa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/dtoa.c b/Python/dtoa.c index 44dc01f1d5..82b6faa80c 100644 --- a/Python/dtoa.c +++ b/Python/dtoa.c @@ -2055,7 +2055,7 @@ _Py_dg_strtod(const char *s00, char **se) + Exp_msk1 ; word1(&rv) = 0; - dsign = 0; + /* dsign = 0; */ break; } } @@ -2092,7 +2092,7 @@ _Py_dg_strtod(const char *s00, char **se) goto undfl; } } - dsign = 1 - dsign; + /* dsign = 1 - dsign; */ break; } if ((aadj = ratio(delta, bs)) <= 2.) { |