diff options
| author | Brett Cannon <bcannon@gmail.com> | 2011-02-22 20:15:44 +0000 |
|---|---|---|
| committer | Brett Cannon <bcannon@gmail.com> | 2011-02-22 20:15:44 +0000 |
| commit | ffbf24bf0cc297d080d6d68bc809a9c156c49123 (patch) | |
| tree | 784a982964a18755673f3d95a8d98eadb333671e /Python/dtoa.c | |
| parent | d563a72e39fd9aa04119460ee7981b9f2287a19d (diff) | |
| download | cpython-ffbf24bf0cc297d080d6d68bc809a9c156c49123.tar.gz | |
Issue #8914: fix various warnings from the Clang static analyzer v254.
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.) { |
