From: Brett Cannon Date: Mon, 25 Jun 2012 20:13:44 +0000 (-0400) Subject: Comment out a dead increment. X-Git-Tag: v3.3.0b1~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8a250fac15ecb2604461ea5753638269e342eb91;p=thirdparty%2FPython%2Fcpython.git Comment out a dead increment. Found by Clang's static analyzer. --- diff --git a/Python/formatter_unicode.c b/Python/formatter_unicode.c index 4b0fd91489a7..661bf192e9e1 100644 --- a/Python/formatter_unicode.c +++ b/Python/formatter_unicode.c @@ -642,7 +642,7 @@ fill_number(_PyUnicodeWriter *writer, const NumberFieldWidths *spec, writer->buffer, writer->pos, digits, d_pos, spec->n_remainder); writer->pos += spec->n_remainder; - d_pos += spec->n_remainder; + /* d_pos += spec->n_remainder; */ } if (spec->n_rpadding) {